ILIAS
release_8 Revision v8.23
◀ 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
Hasher
hash
src
ResourceStorage
Consumer
StreamAccess
Hasher.php
Generated on Tue Sep 2 2025 22:02:54 for ILIAS by
1.8.13 (using
Doxyfile
)