Method | Description | |
---|---|---|
HashPassword ( string password ) : string |
Hashes the password.
|
|
PasswordStrength ( string password ) : PasswordScore |
Determins the password strength
|
|
VerifyHashedPassword ( string hashedPassword, string providedPassword ) : bool |
Verifies the hashed password.
|
Method | Description | |
---|---|---|
ByteArraysEqual ( byte a, byte b ) : bool |
public HashPassword ( string password ) : string | ||
password | string | The password. |
return | string |
public PasswordStrength ( string password ) : PasswordScore | ||
password | string | The password. |
return | PasswordScore |
public VerifyHashedPassword ( string hashedPassword, string providedPassword ) : bool | ||
hashedPassword | string | The hashed password. |
providedPassword | string | The provided password. |
return | bool |