diff options
Diffstat (limited to 'bin/pwgen.php')
-rwxr-xr-x | bin/pwgen.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/pwgen.php b/bin/pwgen.php index 83b4dfe..24fef6c 100755 --- a/bin/pwgen.php +++ b/bin/pwgen.php @@ -44,4 +44,4 @@ if(!in_array(strtolower($algo), hash_algos())) { echo "Do you want to use a salt? (yes/no) [yes] "; $s = (trim(fgets(STDIN)) == 'no') ? '' : 'S'; -echo "\n " . SimpleSAML_Utils_Crypto::pwHash($password, strtoupper( $s . $algo ) ). "\n\n"; +echo "\n " . SimpleSAML\Utils\Crypto::pwHash($password, strtoupper( $s . $algo ) ). "\n\n"; |