Searched refs:EVP_PKEY_cmp (Results 1 – 8 of 8) sorted by relevance
/external/boringssl/src/crypto/x509/ |
D | x509_req.c | 125 switch (EVP_PKEY_cmp(xk, k)) in X509_REQ_check_private_key()
|
D | x509_cmp.c | 327 ret = EVP_PKEY_cmp(xk, k); in X509_check_private_key()
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLKey.java | 374 return NativeCrypto.EVP_PKEY_cmp(ctx, other.getNativeRef()) == 1; in equals()
|
D | NativeCrypto.java | 98 public static native int EVP_PKEY_cmp(NativeRef.EVP_PKEY pkey1, NativeRef.EVP_PKEY pkey2); in EVP_PKEY_cmp() method in NativeCrypto
|
/external/boringssl/src/crypto/evp/ |
D | evp.c | 131 int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b) { in EVP_PKEY_cmp() function
|
/external/boringssl/src/include/openssl/ |
D | evp.h | 111 OPENSSL_EXPORT int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b);
|
/external/conscrypt/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 215 NativeCrypto.EVP_PKEY_cmp(null, null); in test_EVP_PKEY_cmp() 264 NativeCrypto.EVP_PKEY_cmp(pkey1, null); in test_EVP_PKEY_cmp() 270 NativeCrypto.EVP_PKEY_cmp(null, null); in test_EVP_PKEY_cmp() 276 NativeCrypto.EVP_PKEY_cmp(pkey1, pkey1)); in test_EVP_PKEY_cmp() 279 NativeCrypto.EVP_PKEY_cmp(pkey1, pkey1_copy)); in test_EVP_PKEY_cmp() 282 NativeCrypto.EVP_PKEY_cmp(pkey1, pkey2)); in test_EVP_PKEY_cmp()
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 2856 int result = EVP_PKEY_cmp(pkey1, pkey2); 11061 NATIVE_METHOD(NativeCrypto, EVP_PKEY_cmp, "(" REF_EVP_PKEY REF_EVP_PKEY ")I"),
|