Searched refs:EC_POINT_cmp (Results 1 - 18 of 18) sorted by relevance

/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLECPointContext.java53 return NativeCrypto.EC_POINT_cmp(group.getContext(), pointCtx, other.pointCtx);
H A DNativeCrypto.java249 public static native boolean EC_POINT_cmp(long groupRef, long pointRef1, long pointRef2); method in class:NativeCrypto
/external/chromium_org/third_party/openssl/openssl/crypto/ec/
H A Dectest.c220 if (0 != EC_POINT_cmp(group, Q, P, ctx)) ABORT;
224 if (0 != EC_POINT_cmp(group, Q, P, ctx)) ABORT;
228 if (0 != EC_POINT_cmp(group, Q, P, ctx)) ABORT;
363 if (0 != EC_POINT_cmp(group, P, Q, ctx)) ABORT;
370 if (0 != EC_POINT_cmp(group, P, Q, ctx)) ABORT;
377 if (0 != EC_POINT_cmp(group, P, Q, ctx)) ABORT;
391 if (0 != EC_POINT_cmp(group, P, R, ctx)) ABORT;
655 if (0 != EC_POINT_cmp(group, P, R, ctx)) ABORT;
656 if (0 != EC_POINT_cmp(group, R, Q, ctx)) ABORT;
907 if (0 != EC_POINT_cmp(grou
[all...]
H A Dec_ameth.c232 r = EC_POINT_cmp(group, pa, pb, NULL);
H A Dec_key.c367 if (EC_POINT_cmp(eckey->group, point, eckey->pub_key,
H A Dec_lib.c518 /* XXX EC_POINT_cmp() assumes that the methods are equal */
519 if (r || EC_POINT_cmp(a, EC_GROUP_get0_generator(a),
991 int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) function
H A Dec.h627 int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx);
H A Dec_mult.c412 if (pre_comp && pre_comp->numblocks && (EC_POINT_cmp(group, generator, pre_comp->points[0], ctx) == 0))
/external/openssl/crypto/ec/
H A Dectest.c220 if (0 != EC_POINT_cmp(group, Q, P, ctx)) ABORT;
224 if (0 != EC_POINT_cmp(group, Q, P, ctx)) ABORT;
228 if (0 != EC_POINT_cmp(group, Q, P, ctx)) ABORT;
363 if (0 != EC_POINT_cmp(group, P, Q, ctx)) ABORT;
370 if (0 != EC_POINT_cmp(group, P, Q, ctx)) ABORT;
377 if (0 != EC_POINT_cmp(group, P, Q, ctx)) ABORT;
391 if (0 != EC_POINT_cmp(group, P, R, ctx)) ABORT;
655 if (0 != EC_POINT_cmp(group, P, R, ctx)) ABORT;
656 if (0 != EC_POINT_cmp(group, R, Q, ctx)) ABORT;
907 if (0 != EC_POINT_cmp(grou
[all...]
H A Dec_ameth.c232 r = EC_POINT_cmp(group, pa, pb, NULL);
H A Dec_key.c369 if (EC_POINT_cmp(eckey->group, point, eckey->pub_key,
H A Dec_lib.c518 /* XXX EC_POINT_cmp() assumes that the methods are equal */
519 if (r || EC_POINT_cmp(a, EC_GROUP_get0_generator(a),
991 int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) function
H A Dec.h627 int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx);
H A Dec_mult.c412 if (pre_comp && pre_comp->numblocks && (EC_POINT_cmp(group, generator, pre_comp->points[0], ctx) == 0))
/external/chromium_org/third_party/openssl/openssl/include/openssl/
H A Dec.h627 int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx);
/external/openssl/include/openssl/
H A Dec.h627 int EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx);
/external/conscrypt/src/test/java/org/conscrypt/
H A DNativeCryptoTest.java2984 assertTrue(NativeCrypto.EC_POINT_cmp(group1, point1, point2));
/external/conscrypt/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp3554 JNI_TRACE("EC_POINT_cmp(%p, %p, %p)", group, point1, point2);
3557 JNI_TRACE("EC_POINT_cmp(%p, %p, %p) => group == null || point1 == null || point2 == null",
3563 int ret = EC_POINT_cmp(group, point1, point2, (BN_CTX*)NULL);
9580 NATIVE_METHOD(NativeCrypto, EC_POINT_cmp, "(JJJ)Z"),

Completed in 668 milliseconds