This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-debian/debian/make_password.php

7 lines
281 B
PHP
Raw Normal View History

2011-01-28 22:00:48 +00:00
<?
2011-02-14 17:06:01 +00:00
define("SYSPATH", 1);
2011-01-28 22:00:48 +00:00
include("/usr/share/gallery3/modules/user/lib/PasswordHash.php");
$hash_generator = new PasswordHash(10, true);
echo $hash_generator->HashPassword($_SERVER["argv"][1]), "\n";
?>