Home
last modified time | relevance | path

Searched refs:EC_GROUP_cmp (Results 1 – 13 of 13) sorted by relevance

/external/conscrypt/src/main/java/org/conscrypt/
DOpenSSLECPointContext.java49 if (!NativeCrypto.EC_GROUP_cmp(group.getContext(), other.group.getContext())) { in equals()
DOpenSSLECGroupContext.java100 return NativeCrypto.EC_GROUP_cmp(groupCtx, other.groupCtx); in equals()
DNativeCrypto.java231 public static native boolean EC_GROUP_cmp(long ctx1, long ctx2); in EC_GROUP_cmp() method in NativeCrypto
/external/chromium_org/third_party/openssl/openssl/crypto/ec/
Dec_ameth.c416 if (EC_GROUP_cmp(group_a, group_b, NULL)) in ec_cmp_parameters()
Dec.h351 int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx);
Dec_lib.c473 int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx) in EC_GROUP_cmp() function
/external/openssl/crypto/ec/
Dec_ameth.c417 if (EC_GROUP_cmp(group_a, group_b, NULL)) in ec_cmp_parameters()
Dec.h351 int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx);
Dec_lib.c473 int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx) in EC_GROUP_cmp() function
/external/chromium_org/third_party/openssl/openssl/include/openssl/
Dec.h351 int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx);
/external/openssl/include/openssl/
Dec.h351 int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx);
/external/conscrypt/src/test/java/org/conscrypt/
DNativeCryptoTest.java3013 assertTrue(NativeCrypto.EC_GROUP_cmp(group1, group2)); in check_EC_GROUP()
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp3452 int ret = EC_GROUP_cmp(group1, group2, (BN_CTX*)NULL); in NativeCrypto_EC_GROUP_cmp()
9574 NATIVE_METHOD(NativeCrypto, EC_GROUP_cmp, "(JJ)Z"),