1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tinyfilemanager_ynh.git synced 2024-09-03 20:36:01 +02:00
tinyfilemanager_ynh/scripts/hash.php
2022-05-09 14:42:25 +02:00

9 lines
209 B
PHP

<?php
$hashed_password = password_hash($argv[1], PASSWORD_DEFAULT);
//var_dump($hashed_password);
//echo $hashed_password;
print $hashed_password;
// usage : 'php hash.php password' will output the hash.
?>