25 lines
669 B
C#
25 lines
669 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters
|
|
{
|
|
// Token: 0x020015FC RID: 5628
|
|
[Token(Token = "0x20015FC")]
|
|
[Obsolete]
|
|
[StructLayout(3)]
|
|
public class CcmParameters : AeadParameters
|
|
{
|
|
// Token: 0x06009669 RID: 38505 RVA: 0x002165BC File Offset: 0x002147BC
|
|
[Token(Token = "0x6009669")]
|
|
[Address(RVA = "0x1DCD940", Offset = "0x1DCC340", VA = "0x181DCD940")]
|
|
public CcmParameters(KeyParameter key, int macSize, byte[] nonce, byte[] associatedText)
|
|
{
|
|
this.key = key;
|
|
this.macSize = macSize;
|
|
this.associatedText = 0;
|
|
this.nonce = nonce;
|
|
}
|
|
}
|
|
}
|