1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/BicBucStriim_ynh.git synced 2024-09-03 18:15:53 +02:00
bicbucstriim_ynh/conf/password.php
Éric Gaspar 7008aaa631
Testing (#8)
* Repackage
2021-07-07 15:16:30 +02:00

6 lines
149 B
PHP

<?php
require_once 'vendor/ircmaxell/password-compat/lib/password.php';
$pwd = $argv[1];
$hash = password_hash($pwd, PASSWORD_BCRYPT);
echo $hash
?>