Home | History | Annotate | Download | only in spec

Lines Matching refs:curve

23  * The parameter specification used with Elliptic Curve Cryptography (ECC).
26 // Elliptic curve for which this is parameter
27 private final EllipticCurve curve;
28 // Distinguished point on the elliptic curve called generator or base point
36 * Creates a new {@code ECParameterSpec} with the specified elliptic curve,
40 * @param curve
41 * the elliptic curve.
51 public ECParameterSpec(EllipticCurve curve, ECPoint generator,
53 this.curve = curve;
57 // throw NullPointerException if curve, generator or order is null
58 if (this.curve == null) {
59 throw new NullPointerException("curve == null");
86 * Returns the elliptic curve.
88 * @return the elliptic curve.
91 return curve;