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.

16 lines
233 B

3 years ago
  1. <?php
  2. require("Encrypt.class.php");
  3. $pass = "123456ffffffffffffff";
  4. $hash = Encrypt::hash($pass);
  5. var_dump($hash);
  6. $r = Encrypt::match($pass, $hash);
  7. var_dump($r);
  8. if($r){
  9. print("MATCH\n");
  10. }else{
  11. print("NOT MATCH\n");
  12. }