ILIAS
release_8 Revision v8.24
◀ ilDoc Overview
Hasher.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\ResourceStorage\Consumer\StreamAccess
;
22
26
trait Hasher
27
{
28
private
function
hash(
string
$string): string
29
{
30
return
base64_encode($string);
31
}
32
33
private
function
unhash(
string
$string): string
34
{
35
return
base64_decode($string);
36
}
37
}
ILIAS\ResourceStorage\Consumer\StreamAccess
Definition:
Encrypt.php:21
src
ResourceStorage
Consumer
StreamAccess
Hasher.php
Generated on Mon Nov 3 2025 22:02:09 for ILIAS by
1.9.4 (using
Doxyfile
)