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);
        }