ServiceStack.HmacUtils.CreateHashAlgorithm C# (CSharp) Метод

CreateHashAlgorithm() публичный статический Метод

public static CreateHashAlgorithm ( byte authKey ) : HMAC
authKey byte
Результат System.Security.Cryptography.HMAC
        public static HMAC CreateHashAlgorithm(byte[] authKey)
        {
            return new HMACSHA256(authKey);
        }