Files
Apr2020-Cpp2Il-Dump/Assembly-CSharp/BestHTTP/SecureProtocol/Org/BouncyCastle/Crypto/Parameters/ParametersWithSBox.cs
T
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

51 lines
1.3 KiB
C#

using System;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters
{
// Token: 0x02001C0E RID: 7182
[Token(Token = "0x2001C0E")]
public class ParametersWithSBox : ICipherParameters
{
// Token: 0x0600B36D RID: 45933 RVA: 0x00270F1C File Offset: 0x0026F11C
[Token(Token = "0x600B36D")]
[Address(RVA = "0x4089A0", Offset = "0x4077A0", VA = "0x1804089A0")]
public ParametersWithSBox(ICipherParameters parameters, byte[] sBox)
{
this.parameters = parameters;
this.sBox = sBox;
}
// Token: 0x0600B36E RID: 45934 RVA: 0x00270F40 File Offset: 0x0026F140
[Token(Token = "0x600B36E")]
[Address(RVA = "0x3F5F40", Offset = "0x3F4D40", VA = "0x1803F5F40")]
public byte[] GetSBox()
{
return this.sBox;
}
// Token: 0x17001C4D RID: 7245
// (get) Token: 0x0600B36F RID: 45935 RVA: 0x00270F54 File Offset: 0x0026F154
[Token(Token = "0x17001C4D")]
public ICipherParameters Parameters
{
[Token(Token = "0x600B36F")]
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
get
{
return this.parameters;
}
}
// Token: 0x0400720A RID: 29194
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x400720A")]
private ICipherParameters parameters;
// Token: 0x0400720B RID: 29195
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x400720B")]
private byte[] sBox;
}
}