Files
27Aug2021-Cpp2IL-Dump/Assembly-CSharp/BestHTTP/SecureProtocol/Org/BouncyCastle/Crypto/Parameters/ParametersWithSBox.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

51 lines
1.3 KiB
C#

using System;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters
{
// Token: 0x02001CEE RID: 7406
[Token(Token = "0x2001CEE")]
public class ParametersWithSBox : ICipherParameters
{
// Token: 0x0600B73B RID: 46907 RVA: 0x0027A0DC File Offset: 0x002782DC
[Token(Token = "0x600B73B")]
[Address(RVA = "0x417DD0", Offset = "0x416DD0", VA = "0x180417DD0")]
public ParametersWithSBox(ICipherParameters parameters, byte[] sBox)
{
this.parameters = parameters;
this.sBox = sBox;
}
// Token: 0x0600B73C RID: 46908 RVA: 0x0027A100 File Offset: 0x00278300
[Token(Token = "0x600B73C")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
public byte[] GetSBox()
{
return this.sBox;
}
// Token: 0x17001CEA RID: 7402
// (get) Token: 0x0600B73D RID: 46909 RVA: 0x0027A114 File Offset: 0x00278314
[Token(Token = "0x17001CEA")]
public ICipherParameters Parameters
{
[Token(Token = "0x600B73D")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530")]
get
{
return this.parameters;
}
}
// Token: 0x040073C3 RID: 29635
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40073C3")]
private ICipherParameters parameters;
// Token: 0x040073C4 RID: 29636
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x40073C4")]
private byte[] sBox;
}
}