[PHP] pobierz, plaintext <?php function createSalt(){ $text = md5(uniqid(rand(), TRUE)); return substr($text, 0, 15);} $salt = createSalt();$number = "1+";$hash = "+Ala";$password = hash('sha256', $number .$salt . $hash); echo $salt."</br>";echo $password;?>[PHP] pobierz, plaintext