Candor.Security.Cryptography.HashProvider.Hash C# (CSharp) Method

Hash() public abstract method

Creates an unreversible hashed value consistently given the same input.
public abstract Hash ( String salt, String originalValue, Int32 iterations ) : String
salt String Another non-secret value paired with the secret to /// make it more difficult to dictionary attack a collection of hashed values.
originalValue String The original value to keep secret.
iterations System.Int32 The iterations to hash the originalValue and salt.
return String
        public abstract String Hash(String salt, String originalValue, Int32 iterations);