1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- 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());
- }
- 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;
- }
- }
- }
- #endif
|