Home
last modified time | relevance | path

Searched refs:EVP_marshal_private_key (Results 1 – 10 of 10) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLECPrivateKey.java164 return NativeCrypto.EVP_marshal_private_key(key.getNativeRef()); in getEncoded()
217 return Arrays.hashCode(NativeCrypto.EVP_marshal_private_key(key.getNativeRef())); in hashCode()
DOpenSSLRSAPrivateKey.java201 return NativeCrypto.EVP_marshal_private_key(key.getNativeRef()); in getEncoded()
DNativeCrypto.java80 static native byte[] EVP_marshal_private_key(NativeRef.EVP_PKEY pkey); in EVP_marshal_private_key() method in NativeCrypto
/external/boringssl/src/crypto/evp/
Devp_extra_test.cc591 EXPECT_FALSE(EVP_marshal_private_key(cbb.get(), pubkey.get())); in TEST()
611 ASSERT_TRUE(EVP_marshal_private_key(cbb.get(), privkey.get())); in TEST()
Devp_asn1.c186 int EVP_marshal_private_key(CBB *cbb, const EVP_PKEY *key) { in EVP_marshal_private_key() function
Devp_test.cc215 EVP_marshal_private_key); in TestEVP()
/external/boringssl/src/include/openssl/
Devp.h226 OPENSSL_EXPORT int EVP_marshal_private_key(CBB *cbb, const EVP_PKEY *key);
/external/boringssl/src/crypto/pkcs8/
Dpkcs8.c472 !EVP_marshal_private_key(&plaintext_cbb, pkey) || in PKCS8_marshal_encrypted_private_key()
Dpkcs8_x509.c128 !EVP_marshal_private_key(&cbb, pkey) || in EVP_PKEY2PKCS8()
/external/conscrypt/common/src/jni/main/cpp/
DNativeCrypto.cpp1077 if (!EVP_marshal_private_key(cbb.get(), pkey)) { in NativeCrypto_EVP_marshal_private_key()
9371 CONSCRYPT_NATIVE_METHOD(NativeCrypto, EVP_marshal_private_key, "(" REF_EVP_PKEY ")[B"),