mirror of
https://github.com/YunoHost-Apps/BicBucStriim_ynh.git
synced 2024-09-03 18:15:53 +02:00
6 lines
149 B
PHP
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
|
|
?>
|