C# Class Core.Web.NHibernate.Helpers.PasswordHelper

Provides helper methods for password encryption and veryfication.
Mostrar archivo Open project: coreframework/Core-Framework

Public Methods

Method Description
Encrypt ( String plainText, PasswordMode mode ) : PasswordHash

Generates a hash for the given plain text value and returns a base64-encoded result. Before the hash is computed, a random salt is generated and appended to the plain text. This salt is stored at the end of the hash value, so it can be used later for hash verification.

Encrypt ( String plainText, PasswordMode mode, String salt ) : PasswordHash

Generates a hash for the given plain text value and returns a base64-encoded result. Before the hash is computed, a random salt is generated and appended to the plain text. This salt is stored at the end of the hash value, so it can be used later for hash verification.

Verify ( String plainText, PasswordHash expected, PasswordMode mode ) : bool

Compares a hash of the specified plain text value to a given hash value. Plain text is hashed with the same salt value as the original hash.

Private Methods

Method Description
Encrypt ( byte passwordBytes, byte saltBytes, HashAlgorithm algorithm ) : byte[]

Method Details

Encrypt() public static method

Generates a hash for the given plain text value and returns a base64-encoded result. Before the hash is computed, a random salt is generated and appended to the plain text. This salt is stored at the end of the hash value, so it can be used later for hash verification.
public static Encrypt ( String plainText, PasswordMode mode ) : PasswordHash
plainText String Plaintext value to be hashed. The function does not check whether this parameter is null.
mode PasswordMode Password encryption mode.
return PasswordHash

Encrypt() public static method

Generates a hash for the given plain text value and returns a base64-encoded result. Before the hash is computed, a random salt is generated and appended to the plain text. This salt is stored at the end of the hash value, so it can be used later for hash verification.
public static Encrypt ( String plainText, PasswordMode mode, String salt ) : PasswordHash
plainText String Plaintext value to be hashed. The function does not check whether this parameter is null.
mode PasswordMode Password encryption mode.
salt String Random bits that are used as one of the inputs to a key derivation function (formatted as a base64-encoded string).
return PasswordHash

Verify() public static method

Compares a hash of the specified plain text value to a given hash value. Plain text is hashed with the same salt value as the original hash.
public static Verify ( String plainText, PasswordHash expected, PasswordMode mode ) : bool
plainText String Plain text to be verified against the specified hash. The function does not check whether this parameter is null.
expected PasswordHash Password expected hash.
mode PasswordMode Password encryption mode.
return bool