Bouncy Castle Cryptography 1.11 API Specification: Class X9ECPoint
Bouncy Castle Cryptography 1.11

org.bouncycastle.asn1.x9
Class X9ECPoint

java.lang.Object
  |
  +--org.bouncycastle.asn1.x9.X9ECPoint
All Implemented Interfaces:
DEREncodable

public class X9ECPoint
extends java.lang.Object
implements DEREncodable

class for describing an ECPoint as a DER object.


Constructor Summary
X9ECPoint(ECCurve c, DEROctetString s)
           
X9ECPoint(ECPoint p)
           
 
Method Summary
 DERObject getDERObject()
           ECPoint ::= OCTET STRING
 ECPoint getPoint()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

X9ECPoint

public X9ECPoint(ECPoint p)

X9ECPoint

public X9ECPoint(ECCurve c,
                 DEROctetString s)
Method Detail

getPoint

public ECPoint getPoint()

getDERObject

public DERObject getDERObject()
  ECPoint ::= OCTET STRING
 

Octet string produced using ECPoint.getEncoded().

Specified by:
getDERObject in interface DEREncodable

Bouncy Castle Cryptography 1.11