1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/BicBucStriim_ynh.git synced 2024-09-03 18:15:53 +02:00

Merge branch 'master' into testing

This commit is contained in:
ericgaspar 2021-07-07 12:51:19 +02:00
commit a5d914a67d
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,4 @@
<!--
N.B.: This README was automatically generated by https://github.com/YunoHost/apps/tree/master/tools/README-generator
It shall NOT be edited by hand.
@ -56,4 +57,4 @@ or
sudo yunohost app upgrade bicbucstriim -u https://github.com/YunoHost-Apps/bicbucstriim_ynh/tree/testing --debug
```
**More info regarding app packaging:** https://yunohost.org/packaging_apps
**More info regarding app packaging:** https://yunohost.org/packaging_apps

6
scripts/password.php Normal file
View file

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