Candor.Security.Cryptography.HashProvider.Hash C# (CSharp) Méthode

Hash() public abstract méthode

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.
Résultat String
        public abstract String Hash(String salt, String originalValue, Int32 iterations);