FileDocCategorySizeDatePackage
ECPublicKeySpec.javaAPI DocAzureus 3.0.3.4585Tue Jun 08 05:12:56 BST 2004org.bouncycastle.jce.spec

ECPublicKeySpec

public class ECPublicKeySpec extends ECKeySpec
Elliptic Curve public key specification

Fields Summary
private org.bouncycastle.math.ec.ECPoint
q
Constructors Summary
public ECPublicKeySpec(org.bouncycastle.math.ec.ECPoint q, ECParameterSpec spec)
base constructor

param
q the public point on the curve.
param
spec the domain parameters for the curve.

		super(spec);

        this.q = q;
	
Methods Summary
public org.bouncycastle.math.ec.ECPointgetQ()
return the public point q

        return q;