Bouncy Castle Cryptography Library 1.77.0

org.bouncycastle.asn1.x9
Class X9ECPoint

java.lang.Object
  |
  +--org.bouncycastle.asn1.ASN1Object
        |
        +--org.bouncycastle.asn1.x9.X9ECPoint
All Implemented Interfaces:
ASN1Encodable, Encodable

public class X9ECPoint
extends ASN1Object

Class for describing an ECPoint as a DER object.


Constructor Summary
X9ECPoint(org.bouncycastle.math.ec.ECCurve c, ASN1OctetString s)
           
X9ECPoint(org.bouncycastle.math.ec.ECCurve c, byte[] encoding)
           
X9ECPoint(org.bouncycastle.math.ec.ECPoint p, boolean compressed)
           
 
Method Summary
 org.bouncycastle.math.ec.ECPoint getPoint()
           
 byte[] getPointEncoding()
           
 boolean isPointCompressed()
           
 ASN1Primitive toASN1Primitive()
          Produce an object suitable for an ASN1OutputStream.
 
Methods inherited from class org.bouncycastle.asn1.ASN1Object
encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

X9ECPoint

public X9ECPoint(org.bouncycastle.math.ec.ECPoint p,
                 boolean compressed)

X9ECPoint

public X9ECPoint(org.bouncycastle.math.ec.ECCurve c,
                 byte[] encoding)

X9ECPoint

public X9ECPoint(org.bouncycastle.math.ec.ECCurve c,
                 ASN1OctetString s)
Method Detail

getPointEncoding

public byte[] getPointEncoding()

getPoint

public org.bouncycastle.math.ec.ECPoint getPoint()

isPointCompressed

public boolean isPointCompressed()

toASN1Primitive

public ASN1Primitive toASN1Primitive()
Produce an object suitable for an ASN1OutputStream. ECPoint ::= OCTET STRING

Octet string produced using ECPoint.getEncoded().

Overrides:
toASN1Primitive in class ASN1Object
Following copied from class: org.bouncycastle.asn1.ASN1Object
Returns:
a primitive representation of this object.

Bouncy Castle Cryptography Library 1.77.0