init commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using Org.BouncyCastle.Asn1;
|
||||
using Org.BouncyCastle.Math;
|
||||
using Org.BouncyCastle.Math.EC;
|
||||
|
||||
namespace Org.BouncyCastle.Bcpg;
|
||||
|
||||
public class ECDsaPublicBcpgKey : ECPublicBcpgKey
|
||||
{
|
||||
protected internal ECDsaPublicBcpgKey(BcpgInputStream bcpgIn)
|
||||
: base(bcpgIn)
|
||||
{
|
||||
}
|
||||
|
||||
public ECDsaPublicBcpgKey(DerObjectIdentifier oid, ECPoint point)
|
||||
: base(oid, point)
|
||||
{
|
||||
}
|
||||
|
||||
public ECDsaPublicBcpgKey(DerObjectIdentifier oid, BigInteger encodedPoint)
|
||||
: base(oid, encodedPoint)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user