PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $password = 'my password'; $random = openssl_random_pseudo_bytes(18); $salt = "123456";; $hash = crypt($password, $salt); echo $hash; $hash = decrypt($hash, $salt); echo $hash;
Show:  
Copy Clear