This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,22 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters
{
// Token: 0x02001BD9 RID: 7129
[Token(Token = "0x2001BD9")]
[Obsolete]
public class CcmParameters : AeadParameters
{
// Token: 0x0600B243 RID: 45635 RVA: 0x0026DBDC File Offset: 0x0026BDDC
[Token(Token = "0x600B243")]
[Address(RVA = "0x17FE5D0", Offset = "0x17FD3D0", VA = "0x1817FE5D0")]
public CcmParameters(KeyParameter key, int macSize, byte[] nonce, byte[] associatedText)
{
this.key = key;
this.macSize = macSize;
this.associatedText = 0;
this.nonce = nonce;
}
}
}