This commit is contained in:
2026-06-15 18:18:16 +08:00
parent 97c9fba14e
commit 2b9f134e5f
4164 changed files with 386922 additions and 79 deletions

View File

@@ -0,0 +1,68 @@
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Utilities;
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1.X9
{
public class DHValidationParms
: Asn1Encodable
{
private readonly DerBitString seed;
private readonly DerInteger pgenCounter;
public static DHValidationParms GetInstance(Asn1TaggedObject obj, bool isExplicit)
{
return GetInstance(Asn1Sequence.GetInstance(obj, isExplicit));
}
public static DHValidationParms GetInstance(object obj)
{
if (obj == null || obj is DHValidationParms)
return (DHValidationParms)obj;
if (obj is Asn1Sequence)
return new DHValidationParms((Asn1Sequence)obj);
throw new ArgumentException("Invalid DHValidationParms: " + Org.BouncyCastle.Utilities.Platform.GetTypeName(obj), "obj");
}
public DHValidationParms(DerBitString seed, DerInteger pgenCounter)
{
if (seed == null)
throw new ArgumentNullException("seed");
if (pgenCounter == null)
throw new ArgumentNullException("pgenCounter");
this.seed = seed;
this.pgenCounter = pgenCounter;
}
private DHValidationParms(Asn1Sequence seq)
{
if (seq.Count != 2)
throw new ArgumentException("Bad sequence size: " + seq.Count, "seq");
this.seed = DerBitString.GetInstance(seq[0]);
this.pgenCounter = DerInteger.GetInstance(seq[1]);
}
public DerBitString Seed
{
get { return this.seed; }
}
public DerInteger PgenCounter
{
get { return this.pgenCounter; }
}
public override Asn1Object ToAsn1Object()
{
return new DerSequence(seed, pgenCounter);
}
}
}
#pragma warning restore
#endif