BaseCipherSuitePlugin.MACAlgorithmSHA256.CreateHasher C# (CSharp) Method

CreateHasher() public method

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