Files
2026-04-10 22:50:51 +02:00

56 lines
1.6 KiB
C#

using System;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Parameters
{
// Token: 0x02001BFD RID: 7165
[Token(Token = "0x2001BFD")]
public class Gost3410PublicKeyParameters : Gost3410KeyParameters
{
// Token: 0x0600B326 RID: 45862 RVA: 0x0027056C File Offset: 0x0026E76C
[Token(Token = "0x600B326")]
[Address(RVA = "0x180A880", Offset = "0x1809680", VA = "0x18180A880")]
public Gost3410PublicKeyParameters(BigInteger y, Gost3410Parameters parameters)
{
int num = 0;
base..ctor(num != 0);
this.parameters = parameters;
BigInteger p = parameters.p;
int num2 = y.CompareTo(p);
this.y = y;
}
// Token: 0x0600B327 RID: 45863 RVA: 0x002705A8 File Offset: 0x0026E7A8
[Token(Token = "0x600B327")]
[Address(RVA = "0x180A940", Offset = "0x1809740", VA = "0x18180A940")]
public Gost3410PublicKeyParameters(BigInteger y, DerObjectIdentifier publicKeyParamSet)
{
int num = 0;
base..ctor(num != 0, publicKeyParamSet);
BigInteger p = this.parameters.p;
int num2 = y.CompareTo(p);
this.y = y;
}
// Token: 0x17001C33 RID: 7219
// (get) Token: 0x0600B328 RID: 45864 RVA: 0x002705E0 File Offset: 0x0026E7E0
[Token(Token = "0x17001C33")]
public BigInteger Y
{
[Token(Token = "0x600B328")]
[Address(RVA = "0x3F63E0", Offset = "0x3F51E0", VA = "0x1803F63E0")]
get
{
return this.y;
}
}
// Token: 0x040071E6 RID: 29158
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x40071E6")]
private readonly BigInteger y;
}
}