using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Security.Cryptography { /// Computes a Hash-based Message Authentication Code (HMAC) by using the hash function. // Token: 0x02000408 RID: 1032 [Token(Token = "0x2000408")] [ComVisible(true)] public class HMACRIPEMD160 : HMAC { /// Initializes a new instance of the class with a randomly generated 64-byte key. // Token: 0x060023DA RID: 9178 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60023DA")] [Address(RVA = "0xC0A450", Offset = "0xC09450", VA = "0x180C0A450")] public HMACRIPEMD160() { } /// Initializes a new instance of the class with the specified key data. /// The secret key for encryption. The key can be any length, but if it is more than 64 bytes long it is hashed (using SHA-1) to derive a 64-byte key. Therefore, the recommended size of the secret key is 64 bytes. /// The parameter is . // Token: 0x060023DB RID: 9179 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x60023DB")] [Address(RVA = "0xC0A540", Offset = "0xC09540", VA = "0x180C0A540")] public HMACRIPEMD160(byte[] key) { } } }