You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.9 KiB
81 lines
1.9 KiB
using Org.BouncyCastle.Math.EC;
|
|
|
|
using Org.BouncyCastle.Utilities;
|
|
|
|
namespace Org.BouncyCastle.Asn1.X9
|
|
{
|
|
/**
|
|
* class for describing an ECPoint as a Der object.
|
|
*/
|
|
public class X9ECPoint
|
|
: Asn1Encodable
|
|
{
|
|
private readonly Asn1OctetString encoding;
|
|
|
|
private ECCurve c;
|
|
private ECPoint p;
|
|
|
|
public X9ECPoint(ECPoint p)
|
|
: this(p, false)
|
|
{
|
|
}
|
|
|
|
public X9ECPoint(ECPoint p, bool compressed)
|
|
{
|
|
this.p = p.Normalize();
|
|
this.encoding = new DerOctetString(p.GetEncoded(compressed));
|
|
}
|
|
|
|
public X9ECPoint(ECCurve c, byte[] encoding)
|
|
{
|
|
this.c = c;
|
|
this.encoding = new DerOctetString(Arrays.Clone(encoding));
|
|
}
|
|
|
|
public X9ECPoint(ECCurve c, Asn1OctetString s)
|
|
: this(c, s.GetOctets())
|
|
{
|
|
}
|
|
|
|
public byte[] GetPointEncoding()
|
|
{
|
|
return Arrays.Clone(encoding.GetOctets());
|
|
}
|
|
|
|
[System.Obsolete]
|
|
public ECPoint Point
|
|
{
|
|
get
|
|
{
|
|
if (p == null)
|
|
{
|
|
p = c.DecodePoint(encoding.GetOctets()).Normalize();
|
|
}
|
|
|
|
return p;
|
|
}
|
|
}
|
|
|
|
public bool IsPointCompressed
|
|
{
|
|
get
|
|
{
|
|
byte[] octets = encoding.GetOctets();
|
|
return octets != null && octets.Length > 0 && (octets[0] == 2 || octets[0] == 3);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Produce an object suitable for an Asn1OutputStream.
|
|
* <pre>
|
|
* ECPoint ::= OCTET STRING
|
|
* </pre>
|
|
* <p>
|
|
* Octet string produced using ECPoint.GetEncoded().</p>
|
|
*/
|
|
public override Asn1Object ToAsn1Object()
|
|
{
|
|
return encoding;
|
|
}
|
|
}
|
|
}
|
|
|