ServiceStack.HmacUtils.CreateHashAlgorithm C# (CSharp) Méthode

CreateHashAlgorithm() public static méthode

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