init commit

This commit is contained in:
2025-10-09 09:57:24 +09:00
commit 4d551bd74f
6636 changed files with 1218703 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
using System;
using Org.BouncyCastle.Math;
namespace Org.BouncyCastle.Asn1.Oiw;
public class ElGamalParameter : Asn1Encodable
{
internal DerInteger p;
internal DerInteger g;
public BigInteger P => p.PositiveValue;
public BigInteger G => g.PositiveValue;
public ElGamalParameter(BigInteger p, BigInteger g)
{
this.p = new DerInteger(p);
this.g = new DerInteger(g);
}
public ElGamalParameter(Asn1Sequence seq)
{
if (seq.Count != 2)
{
throw new ArgumentException("Wrong number of elements in sequence", "seq");
}
p = DerInteger.GetInstance(seq[0]);
g = DerInteger.GetInstance(seq[1]);
}
public override Asn1Object ToAsn1Object()
{
return new DerSequence(p, g);
}
}