scripts
This commit is contained in:
+30
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Engines
|
||||
{
|
||||
// Token: 0x020016AA RID: 5802
|
||||
[Token(Token = "0x20016AA")]
|
||||
[StructLayout(3)]
|
||||
public class CamelliaWrapEngine : Rfc3394WrapEngine
|
||||
{
|
||||
// Token: 0x06009B53 RID: 39763 RVA: 0x0022F6C0 File Offset: 0x0022D8C0
|
||||
[Token(Token = "0x6009B53")]
|
||||
[Address(RVA = "0x22E5620", Offset = "0x22E4020", VA = "0x1822E5620")]
|
||||
public CamelliaWrapEngine()
|
||||
{
|
||||
uint[] array = new uint[96];
|
||||
CamelliaEngine camelliaEngine;
|
||||
camelliaEngine.subkey = array;
|
||||
uint[] array2 = new uint[8];
|
||||
camelliaEngine.kw = array2;
|
||||
uint[] array3 = new uint[12];
|
||||
camelliaEngine.ke = array3;
|
||||
uint[] array4 = new uint[4];
|
||||
camelliaEngine.state = array4;
|
||||
camelliaEngine.Reset();
|
||||
base..ctor(camelliaEngine);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user