BaseCipherSuitePlugin.MACAlgorithmSHA256.CreateHasher C# (CSharp) Méthode

CreateHasher() public méthode

public CreateHasher ( byte key ) : KeyedHashAlgorithm
key byte
Résultat System.Security.Cryptography.KeyedHashAlgorithm
        public override KeyedHashAlgorithm CreateHasher(byte[] key)
        {
            return new HMACSHA256(key);
        }