Searched refs:BIO_new_mem_buf (Results 1 - 18 of 18) sorted by relevance
/external/curl/docs/examples/ |
H A D | usercertinmem.c | 121 bio = BIO_new_mem_buf((char *)mypem, -1); 124 printf("BIO_new_mem_buf failed\n"); 142 kbio = BIO_new_mem_buf((char *)mykey, -1); 144 printf("BIO_new_mem_buf failed\n");
|
H A D | cacertinmem.c | 85 bio=BIO_new_mem_buf(mypem, -1);
|
/external/google-tv-pairing-protocol/cpp/src/polo/util/ |
H A D | certificateutil.cc | 25 BIO* bio = BIO_new_mem_buf(&pem[0], pem.size()); 56 BIO* bio = BIO_new_mem_buf(&pem[0], pem.size());
|
/external/google-tv-pairing-protocol/cpp/tests/polo/pairing/ |
H A D | polochallengeresponsetest.cc | 70 client_bio = BIO_new_mem_buf(client_pem, -1); 73 server_bio = BIO_new_mem_buf(server_pem, -1);
|
/external/google-tv-pairing-protocol/cpp/tests/polo/util/ |
H A D | certificateutiltest.cc | 72 BIO* rsa_bio = BIO_new_mem_buf(&rsa_string[0], rsa_string.size());
|
/external/boringssl/src/crypto/evp/ |
H A D | evp_test.cc | 117 ScopedBIO bio(BIO_new_mem_buf(const_cast<char*>(block.data()), block.size()));
|
/external/webrtc/webrtc/base/ |
H A D | opensslidentity.cc | 229 BIO* bio = BIO_new_mem_buf(const_cast<char*>(pem_string.c_str()), -1); 442 BIO* bio = BIO_new_mem_buf(const_cast<char*>(private_key.c_str()), -1);
|
/external/boringssl/src/crypto/bio/ |
H A D | bio_mem.c | 67 BIO *BIO_new_mem_buf(void *buf, int len) { function
|
H A D | bio_test.cc | 334 ScopedBIO bio(BIO_new_mem_buf(const_cast<uint8_t*>(data), data_len));
|
/external/libbrillo/policy/ |
H A D | device_policy_impl.cc | 49 BIO* bio = BIO_new_mem_buf(key, public_key.length());
|
/external/boringssl/include/openssl/ |
H A D | bio.h | 358 * Memory BIOs can be used as a read-only source (with |BIO_new_mem_buf|) or a 377 /* BIO_new_mem_buf creates BIO that reads and writes from |len| bytes at |buf|. 382 OPENSSL_EXPORT BIO *BIO_new_mem_buf(void *buf, int len);
|
/external/boringssl/src/include/openssl/ |
H A D | bio.h | 358 * Memory BIOs can be used as a read-only source (with |BIO_new_mem_buf|) or a 377 /* BIO_new_mem_buf creates BIO that reads and writes from |len| bytes at |buf|. 382 OPENSSL_EXPORT BIO *BIO_new_mem_buf(void *buf, int len);
|
/external/ipsec-tools/src/racoon/ |
H A D | eaytest.c | 100 bio = BIO_new_mem_buf(pubkey_txt, strlen(pubkey_txt)); 206 bio = BIO_new_mem_buf(buf, strlen(buf));
|
H A D | crypto_openssl.c | 450 return BIO_new_mem_buf(data, -1); 2645 bio = BIO_new_mem_buf(in, inlen);
|
/external/libmicrohttpd/src/microhttpd/ |
H A D | daemon.c | 600 BIO* mem_bio = BIO_new_mem_buf ((void*)daemon->https_mem_trust, -1); 620 BIO* mem_bio = BIO_new_mem_buf ((void*)daemon->https_mem_dhparams, -1); 642 BIO* mem_bio = BIO_new_mem_buf ((void*)daemon->https_mem_key, -1); 659 mem_bio = BIO_new_mem_buf ((void*)daemon->https_mem_cert, -1);
|
/external/boringssl/src/crypto/x509/ |
H A D | pkcs7_test.c | 599 BIO *bio = BIO_new_mem_buf((char *) pem, strlen(pem)); 621 BIO *bio = BIO_new_mem_buf((char *) pem, strlen(pem));
|
/external/boringssl/src/crypto/pkcs8/ |
H A D | pkcs12_test.cc | 711 ScopedBIO bio(BIO_new_mem_buf((void*) der, der_len));
|
/external/conscrypt/src/main/native/ |
H A D | org_conscrypt_NativeCrypto.cpp | 10244 Unique_BIO nullBio(BIO_new_mem_buf(nullptr, 0));
|
Completed in 323 milliseconds