hide.php: add hide.php to the functions

This commit is contained in:
Zankaria 2025-04-16 14:32:14 +02:00
parent 26c6cb0330
commit 624b629ff3

6
inc/functions/hide.php Normal file
View File

@ -0,0 +1,6 @@
<?php
namespace Vichan\Functions\Hide;
function secure_hash(string $data, bool $binary): string {
return \hash('tiger160,3', $data, $binary);
}