24 lines
472 B
C#
24 lines
472 B
C#
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)
|
|
{
|
|
}
|
|
}
|