Searched refs:EC_GROUP_cmp (Results 1 – 13 of 13) sorted by relevance
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLECPointContext.java | 49 if (!NativeCrypto.EC_GROUP_cmp(group.getContext(), other.group.getContext())) { in equals()
|
D | OpenSSLECGroupContext.java | 100 return NativeCrypto.EC_GROUP_cmp(groupCtx, other.groupCtx); in equals()
|
D | NativeCrypto.java | 231 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/ |
D | ec_ameth.c | 416 if (EC_GROUP_cmp(group_a, group_b, NULL)) in ec_cmp_parameters()
|
D | ec.h | 351 int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx);
|
D | ec_lib.c | 473 int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx) in EC_GROUP_cmp() function
|
/external/openssl/crypto/ec/ |
D | ec_ameth.c | 417 if (EC_GROUP_cmp(group_a, group_b, NULL)) in ec_cmp_parameters()
|
D | ec.h | 351 int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx);
|
D | ec_lib.c | 473 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/ |
D | ec.h | 351 int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx);
|
/external/openssl/include/openssl/ |
D | ec.h | 351 int EC_GROUP_cmp(const EC_GROUP *a, const EC_GROUP *b, BN_CTX *ctx);
|
/external/conscrypt/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 3013 assertTrue(NativeCrypto.EC_GROUP_cmp(group1, group2)); in check_EC_GROUP()
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 3452 int ret = EC_GROUP_cmp(group1, group2, (BN_CTX*)NULL); in NativeCrypto_EC_GROUP_cmp() 9574 NATIVE_METHOD(NativeCrypto, EC_GROUP_cmp, "(JJ)Z"),
|