blob: f3250b7463ad40f2ee843c4fbf636ca759b801a6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using Org.BouncyCastle.Asn1;
using Org.BouncyCastle.Math;
using Org.BouncyCastle.Math.EC;
namespace Org.BouncyCastle.Bcpg
{
public sealed class EdDsaPublicBcpgKey
: ECPublicBcpgKey
{
internal EdDsaPublicBcpgKey(BcpgInputStream bcpgIn)
: base(bcpgIn)
{
}
public EdDsaPublicBcpgKey(DerObjectIdentifier oid, ECPoint point)
: base(oid, point)
{
}
public EdDsaPublicBcpgKey(DerObjectIdentifier oid, BigInteger encodedPoint)
: base(oid, encodedPoint)
{
}
}
}
|