Home
last modified time | relevance | path

Searched refs:EVP_marshal_public_key (Results 1 – 17 of 17) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLECPublicKey.java91 return NativeCrypto.EVP_marshal_public_key(key.getNativeRef()); in getEncoded()
147 return Arrays.hashCode(NativeCrypto.EVP_marshal_public_key(key.getNativeRef())); in hashCode()
DOpenSSLRSAPublicKey.java97 return NativeCrypto.EVP_marshal_public_key(key.getNativeRef()); in getEncoded()
DNativeCrypto.java104 static native byte[] EVP_marshal_public_key(NativeRef.EVP_PKEY pkey); in EVP_marshal_public_key() method in NativeCrypto
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DOpenSSLECPublicKey.java92 return NativeCrypto.EVP_marshal_public_key(key.getNativeRef()); in getEncoded()
148 return Arrays.hashCode(NativeCrypto.EVP_marshal_public_key(key.getNativeRef())); in hashCode()
DOpenSSLRSAPublicKey.java99 return NativeCrypto.EVP_marshal_public_key(key.getNativeRef()); in getEncoded()
DNativeCrypto.java108 static native byte[] EVP_marshal_public_key(NativeRef.EVP_PKEY pkey); in EVP_marshal_public_key() method in NativeCrypto
/external/nos/host/android/hals/keymaster/
Dexport_key.cpp74 if (!EVP_marshal_public_key(&cbb, pkey.get())) { in export_key_der()
161 if (!EVP_marshal_public_key(&cbb, pkey.get())) { in export_key_der()
/external/boringssl/src/crypto/evp/
Devp_extra_test.cc500 EXPECT_FALSE(EVP_marshal_public_key(cbb.get(), empty.get())) in TEST()
584 ASSERT_TRUE(EVP_marshal_public_key(cbb.get(), pubkey.get())); in TEST()
604 ASSERT_TRUE(EVP_marshal_public_key(cbb.get(), privkey.get())); in TEST()
Devp_asn1.c143 int EVP_marshal_public_key(CBB *cbb, const EVP_PKEY *key) { in EVP_marshal_public_key() function
Devp_test.cc243 return ImportKey(t, key_map, EVP_parse_public_key, EVP_marshal_public_key); in TestEVP()
/external/libchrome/crypto/
Drsa_private_key.cc104 !EVP_marshal_public_key(cbb.get(), key_.get()) || in ExportPublicKey()
/external/boringssl/src/crypto/x509/
Dx_pubkey.c101 !EVP_marshal_public_key(&cbb, pkey) ||
/external/boringssl/src/include/openssl/
Devp.h223 OPENSSL_EXPORT int EVP_marshal_public_key(CBB *cbb, const EVP_PKEY *key);
/external/grpc-grpc/src/objective-c/
Dgrpc_shadow_boringssl_symbol_list1951 EVP_marshal_public_key
DBoringSSL-GRPC.podspec3503 '#define EVP_marshal_public_key GRPC_SHADOW_EVP_marshal_public_key',
/external/grpc-grpc/src/core/tsi/
Dgrpc_shadow_boringssl.h1979 #define EVP_marshal_public_key GRPC_SHADOW_EVP_marshal_public_key macro
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc1234 if (!EVP_marshal_public_key(cbb.get(), pkey)) { in NativeCrypto_EVP_marshal_public_key()
9931 CONSCRYPT_NATIVE_METHOD(EVP_marshal_public_key, "(" REF_EVP_PKEY ")[B"),