Files
Jan2021-Cpp2Il-Dump/Assembly-CSharp/BestHTTP/SecureProtocol/Org/BouncyCastle/Crypto/Parameters/CcmParameters.cs
T
2026-04-08 23:40:05 +02:00

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;
}
}
}