Searched refs:EVP_PKEY_cmp (Results 1 – 15 of 15) sorted by relevance
/external/chromium_org/net/base/ |
D | openssl_private_key_store_memory.cc | 49 if (EVP_PKEY_cmp(*it, pkey) == 1) in HasPrivateKey()
|
/external/chromium_org/net/ssl/ |
D | openssl_client_key_store.cc | 68 if (EVP_PKEY_cmp(pairs_[n].public_key.get(), public_key) == 1) in FindKeyPairIndex()
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLKey.java | 259 return NativeCrypto.EVP_PKEY_cmp(ctx, other.getPkeyContext()) == 1; in equals()
|
D | NativeCrypto.java | 108 public static native int EVP_PKEY_cmp(long pkey1, long pkey2); in EVP_PKEY_cmp() method in NativeCrypto
|
/external/openssl/crypto/x509/ |
D | x509_req.c | 123 switch (EVP_PKEY_cmp(xk, k)) in X509_REQ_check_private_key()
|
D | x509_cmp.c | 321 ret = EVP_PKEY_cmp(xk, k); in X509_check_private_key()
|
/external/chromium_org/third_party/boringssl/src/crypto/x509/ |
D | x509_req.c | 123 switch (EVP_PKEY_cmp(xk, k)) in X509_REQ_check_private_key()
|
D | x509_cmp.c | 325 ret = EVP_PKEY_cmp(xk, k); in X509_check_private_key()
|
/external/chromium_org/third_party/boringssl/src/crypto/evp/ |
D | evp.c | 127 int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b) { in EVP_PKEY_cmp() function
|
/external/openssl/crypto/evp/ |
D | p_lib.c | 159 int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b) in EVP_PKEY_cmp() function
|
D | evp.h | 942 int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b);
|
/external/chromium_org/third_party/boringssl/src/include/openssl/ |
D | evp.h | 102 OPENSSL_EXPORT int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b);
|
/external/conscrypt/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 209 NativeCrypto.EVP_PKEY_cmp(NULL, NULL); in test_EVP_PKEY_cmp() 256 NativeCrypto.EVP_PKEY_cmp(pkey1, NULL); in test_EVP_PKEY_cmp() 262 NativeCrypto.EVP_PKEY_cmp(NULL, pkey1); in test_EVP_PKEY_cmp() 268 NativeCrypto.EVP_PKEY_cmp(pkey1, pkey1)); in test_EVP_PKEY_cmp() 271 NativeCrypto.EVP_PKEY_cmp(pkey1, pkey1_copy)); in test_EVP_PKEY_cmp() 274 NativeCrypto.EVP_PKEY_cmp(pkey1, pkey2)); in test_EVP_PKEY_cmp()
|
/external/openssl/include/openssl/ |
D | evp.h | 942 int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b);
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 2458 int result = EVP_PKEY_cmp(pkey1, pkey2); in NativeCrypto_EVP_PKEY_cmp() 9587 NATIVE_METHOD(NativeCrypto, EVP_PKEY_cmp, "(JJ)I"),
|