rehash() 공개 메소드

Hashes password using password_hash. Uses PASSWORD_DEFAULT encryption.
public rehash ( string $password ) : string
$password string Plain text password
리턴 string Hashed password
 /**
  * {@inheritDoc}
  */
 public function rehash($password)
 {
     return $this->validator->rehash($password);
 }