using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// Computes a Hash-based Message Authentication Code (HMAC) using the hash function.
// Token: 0x020003ED RID: 1005
[Token(Token = "0x20003ED")]
[ComVisible(true)]
public class HMACSHA1 : HMAC
{
/// Initializes a new instance of the class with a randomly generated key.
// Token: 0x060021D0 RID: 8656 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60021D0")]
[Address(RVA = "0x2DA89C0", Offset = "0x2DA77C0", VA = "0x182DA89C0")]
public HMACSHA1()
{
}
/// 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: 0x060021D1 RID: 8657 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60021D1")]
[Address(RVA = "0x2DA8910", Offset = "0x2DA7710", VA = "0x182DA8910")]
public HMACSHA1(byte[] key)
{
}
/// Initializes a new instance of the class with the specified key data and a value that specifies whether to use the managed version of the SHA1 algorithm.
/// 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.
///
/// to use the managed implementation of the SHA1 algorithm (the class); to use the unmanaged implementation (the class).
// Token: 0x060021D2 RID: 8658 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x60021D2")]
[Address(RVA = "0x2DA8910", Offset = "0x2DA7710", VA = "0x182DA8910")]
public HMACSHA1(byte[] key, bool useManagedSha1)
{
}
}
}