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
2013-04-04 09:26:02 +00:00

7 lines
281 B
PHP

<?
define("SYSPATH", 1);
include("/usr/share/gallery3/modules/user/lib/PasswordHash.php");
$hash_generator = new PasswordHash(10, true);
echo $hash_generator->HashPassword($_SERVER["argv"][1]), "\n";
?>