培训考核三期,新版培训,网页版培训登录器
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.
 
 

84 lines
2.0 KiB

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using BestHTTP.SecureProtocol.Org.BouncyCastle.Math.EC;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities;
namespace BestHTTP.SecureProtocol.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());
}
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;
}
}
}
#pragma warning restore
#endif