Lines Matching refs:curve
33 * an elliptic curve.
70 * Creates an elliptic curve with the specified elliptic field
73 * @param field the finite field that this elliptic curve is over.
74 * @param a the first coefficient of this elliptic curve.
75 * @param b the second coefficient of this elliptic curve.
87 * Creates an elliptic curve with the specified elliptic field
89 * <code>b</code>, and the <code>seed</code> used for curve generation.
90 * @param field the finite field that this elliptic curve is over.
91 * @param a the first coefficient of this elliptic curve.
92 * @param b the second coefficient of this elliptic curve.
93 * @param seed the bytes used during curve generation for later
126 * elliptic curve is over.
127 * @return the field <code>field</code> that this curve
136 * elliptic curve.
145 * elliptic curve.
154 * during curve generation. May be null if not specified.
164 * Compares this elliptic curve for equality with the
173 EllipticCurve curve = (EllipticCurve) obj;
174 if ((field.equals(curve.field)) &&
175 (a.equals(curve.a)) &&
176 (b.equals(curve.b))) {
184 * Returns a hash code value for this elliptic curve.