mirror of
https://github.com/Hizenberg469/BPIT-ATTENDANCE.git
synced 2026-04-19 17:52:25 +03:00
8 lines
98 B
PHP
8 lines
98 B
PHP
<?php
|
|
function gen_hash($password){
|
|
$h_value = hash('xxh128',$password);
|
|
|
|
return $h_value;
|
|
}
|
|
?>
|