ServiceStack.HmacUtils.CreateHashAlgorithm C# (CSharp) Method

CreateHashAlgorithm() public static method

public static CreateHashAlgorithm ( byte authKey ) : HMAC
authKey byte
return System.Security.Cryptography.HMAC
        public static HMAC CreateHashAlgorithm(byte[] authKey)
        {
            return new HMACSHA256(authKey);
        }