123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- #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
|