This commit is contained in:
niko
2026-04-08 23:40:05 +02:00
parent d6894bcbc7
commit 18dc73f922
7750 changed files with 1795369 additions and 0 deletions
@@ -0,0 +1,21 @@
using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines
{
// Token: 0x020016A6 RID: 5798
[Token(Token = "0x20016A6")]
[StructLayout(3)]
public class AesWrapEngine : Rfc3394WrapEngine
{
// Token: 0x06009B17 RID: 39703 RVA: 0x0022C618 File Offset: 0x0022A818
[Token(Token = "0x6009B17")]
[Address(RVA = "0x22DCC70", Offset = "0x22DB670", VA = "0x1822DCC70")]
public AesWrapEngine()
{
AesEngine aesEngine = new AesEngine();
base..ctor(aesEngine);
}
}
}