Home | History | Annotate | Download | only in ec

Lines Matching refs:bY

6  * herein is developed by SUN MICROSYSTEMS, INC., and is contributed
12 * The software is originally written by Sheueling Chang Shantz and
33 * "This product includes software developed by the OpenSSL Project
47 * "This product includes software developed by the OpenSSL Project
50 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
64 * This product includes cryptographic software written by Eric Young
65 * (eay@cryptsoft.com). This product includes software written by Tim
125 * Note that all other members are handled by EC_GROUP_new.
137 * Note that all other members are handled by EC_GROUP_free.
148 * Note that all other members are handled by EC_GROUP_clear_free.
165 * Note that all other members are handled by EC_GROUP_copy.
336 * A point at infinity is represented by having Z=0.
726 if (!EC_POINT_is_on_curve(group, point, ctx)) /* test required by X9.62 */
904 /* We have a curve defined by a Weierstrass equation
932 BIGNUM *aX, *aY, *bX, *bY;
960 bY = BN_CTX_get(ctx);
961 if (bY == NULL) goto err;
964 if (!EC_POINT_get_affine_coordinates_GF2m(group, b, bX, bY, ctx)) goto err;
965 ret = ((BN_cmp(aX, bX) == 0) && BN_cmp(aY, bY) == 0) ? 0 : 1;