pin_guide_ms
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

17 lines
233 B

<?php
require("Encrypt.class.php");
$pass = "123456ffffffffffffff";
$hash = Encrypt::hash($pass);
var_dump($hash);
$r = Encrypt::match($pass, $hash);
var_dump($r);
if($r){
print("MATCH\n");
}else{
print("NOT MATCH\n");
}