|
Bouncy Castle Cryptography 1.11 API Specification: Class ECPublicKeySpec
org.bouncycastle.jce.spec
Class ECPublicKeySpec
java.lang.Object
|
+--org.bouncycastle.jce.spec.ECKeySpec
|
+--org.bouncycastle.jce.spec.ECPublicKeySpec
- All Implemented Interfaces:
- java.security.spec.KeySpec
- public class ECPublicKeySpec
- extends ECKeySpec
Elliptic Curve public key specification
Method Summary |
ECPoint |
getQ()
return the public point q |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ECPublicKeySpec
public ECPublicKeySpec(ECPoint q,
ECParameterSpec spec)
- base constructor
- Parameters:
q - the public point on the curve.spec - the domain parameters for the curve.
getQ
public ECPoint getQ()
- return the public point q
|