32 lines
1.6 KiB
C#
32 lines
1.6 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Security.Cryptography
|
|
{
|
|
/// <summary>Computes a Hash-based Message Authentication Code (HMAC) by using the <see cref="T:System.Security.Cryptography.RIPEMD160" /> hash function.</summary>
|
|
// Token: 0x020003EC RID: 1004
|
|
[Token(Token = "0x20003EC")]
|
|
[ComVisible(true)]
|
|
public class HMACRIPEMD160 : HMAC
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACRIPEMD160" /> class with a randomly generated 64-byte key.</summary>
|
|
// Token: 0x060021CE RID: 8654 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60021CE")]
|
|
[Address(RVA = "0x2DA8770", Offset = "0x2DA7570", VA = "0x182DA8770")]
|
|
public HMACRIPEMD160()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.HMACRIPEMD160" /> class with the specified key data.</summary>
|
|
/// <param name="key">The secret key for <see cref="T:System.Security.Cryptography.HMACRIPEMD160" /> 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.</param>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="key" /> parameter is <see langword="null" />.</exception>
|
|
// Token: 0x060021CF RID: 8655 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x60021CF")]
|
|
[Address(RVA = "0x2DA8860", Offset = "0x2DA7660", VA = "0x182DA8860")]
|
|
public HMACRIPEMD160(byte[] key)
|
|
{
|
|
}
|
|
}
|
|
}
|