mirror of
https://github.com/YunoHost-Apps/tinyfilemanager_ynh.git
synced 2024-09-03 20:36:01 +02:00
9 lines
209 B
PHP
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.
|
|
?>
|
|
|