hide.php: add hide.php to the functions

This commit is contained in:
Zankaria 2025-04-16 14:32:14 +02:00
parent 54dcf79a7f
commit acdf792daf

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);
}