1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tinyfilemanager_ynh.git synced 2024-09-03 20:36:01 +02:00

Create hash.php

This commit is contained in:
jarod5001 2022-05-09 14:42:25 +02:00 committed by GitHub
parent 90d0be749f
commit a1c565a290
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

9
scripts/hash.php Normal file
View file

@ -0,0 +1,9 @@
<?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.
?>