<?php define("BLOWFISH_PRE", "$2y$05$"); define("BLOWFISH_SUF", "$"); function pwhash($password) { $salt = str_repeat('A', 21); return crypt($password, BLOWFISH_PRE . $salt . BLOWFISH_SUF); } var_dump(pwhash('test'));
You have javascript disabled. You will not be able to edit any code.