App.Security.PasswordHash.PasswordHash C# (CSharp) Méthode

PasswordHash() private méthode

Initializes a new instance of the PasswordHash class.
private PasswordHash ( byte hash, byte salt ) : System.Security.Cryptography
hash byte Password hash
salt byte Password salt
Résultat System.Security.Cryptography
        private PasswordHash(byte[] hash, byte[] salt)
        {
            this.Hash = hash;
            this.Salt = salt;
        }