Home
last modified time | relevance | path

Searched refs:ScopedBIO (Results 1 – 15 of 15) sorted by relevance

/external/boringssl/src/ssl/test/
Dasync_bio.cc153 ScopedBIO AsyncBioCreate() { in AsyncBioCreate()
154 return ScopedBIO(BIO_new(&g_async_bio_method)); in AsyncBioCreate()
157 ScopedBIO AsyncBioCreateDatagram() { in AsyncBioCreateDatagram()
158 ScopedBIO ret(BIO_new(&g_async_bio_method)); in AsyncBioCreateDatagram()
Dasync_bio.h28 ScopedBIO AsyncBioCreate();
33 ScopedBIO AsyncBioCreateDatagram();
Dpacketed_bio.h41 ScopedBIO PacketedBioCreate(timeval *out_timeout);
Dpacketed_bio.cc211 ScopedBIO PacketedBioCreate(timeval *out_timeout) { in PacketedBioCreate()
212 ScopedBIO bio(BIO_new(&g_packeted_bio_method)); in PacketedBioCreate()
Dbssl_shim.cc142 ScopedBIO bio(BIO_new(BIO_s_file())); in LoadPrivateKey()
1270 ScopedBIO bio(BIO_new_socket(sock, BIO_NOCLOSE)); in DoExchange()
1275 ScopedBIO packeted = in DoExchange()
1281 ScopedBIO async_scoped = in DoExchange()
/external/boringssl/src/crypto/bio/
Dbio_test.cc106 ScopedBIO bio(BIO_new_connect(hostname)); in TestSocketConnect()
219 ScopedBIO bio1_scoper(bio1); in TestZeroCopyBioPairs()
220 ScopedBIO bio2_scoper(bio2); in TestZeroCopyBioPairs()
290 ScopedBIO bio(BIO_new(BIO_s_mem())); in TestPrintf()
334 ScopedBIO bio(BIO_new_mem_buf(const_cast<uint8_t*>(data), data_len)); in ReadASN1()
/external/boringssl/src/tool/
Dclient.cc94 ScopedBIO bio(BIO_new(BIO_s_file())); in LoadPrivateKey()
260 ScopedBIO bio(BIO_new_socket(sock, BIO_CLOSE)); in Client()
268 ScopedBIO in(BIO_new_file(args_map["-session-in"].c_str(), "rb")); in Client()
299 ScopedBIO out(BIO_new_file(args_map["-session-out"].c_str(), "wb")); in Client()
Dgenrsa.cc56 ScopedBIO bio(BIO_new_fp(stdout, BIO_NOCLOSE)); in GenerateRSAKey()
/external/libchrome/crypto/
Dopenssl_bio_string_unittest.cc20 ScopedBIO bio(BIO_new_string(&s)); in TEST()
46 ScopedBIO bio(BIO_new_string(&s)); in TEST()
Dscoped_openssl_types.h46 using ScopedBIO = ScopedOpenSSL<BIO, BIO_free_all>; variable
Drsa_private_key_openssl.cc39 ScopedBIO bio(BIO_new(BIO_s_mem())); in ExportKey()
/external/boringssl/src/crypto/pkcs8/
Dpkcs12_test.cc711 ScopedBIO bio(BIO_new_mem_buf((void*) der, der_len)); in TestCompat()
/external/boringssl/src/crypto/evp/
Devp_test.cc117 ScopedBIO bio(BIO_new_mem_buf(const_cast<char*>(block.data()), block.size())); in ImportPrivateKey()
/external/boringssl/src/crypto/test/
Dscoped_types.h98 using ScopedBIO = ScopedOpenSSLType<BIO, BIO_vfree>; variable
/external/boringssl/src/ssl/
Dssl_test.cc790 ScopedBIO bio(BIO_new(BIO_s_mem())); in GetClientHelloLen()