createPasswordHash() public method

The hashing algorithm used depends on your config.
public createPasswordHash ( string $password ) : string
$password string String you wish to hash.
return string Hash of the given string.
Esempio n. 1
0
 /**
  * Create a hash for the given password.
  *
  * @param string $password
  *
  * @return string Password hash.
  */
 public function createPasswordHash($password)
 {
     return $this->instance->createPasswordHash($password);
 }
Esempio n. 2
0
 public function testVerifyPasswordHash2()
 {
     $crypt = new Crypt();
     $password = $crypt->createPasswordHash('login123');
     $this->assertFalse($crypt->verifyPasswordHash('123login', $password));
 }