Searched refs:ScopedBIO (Results 1 – 15 of 15) sorted by relevance
/external/boringssl/src/ssl/test/ |
D | async_bio.cc | 153 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()
|
D | async_bio.h | 28 ScopedBIO AsyncBioCreate(); 33 ScopedBIO AsyncBioCreateDatagram();
|
D | packeted_bio.h | 41 ScopedBIO PacketedBioCreate(timeval *out_timeout);
|
D | packeted_bio.cc | 211 ScopedBIO PacketedBioCreate(timeval *out_timeout) { in PacketedBioCreate() 212 ScopedBIO bio(BIO_new(&g_packeted_bio_method)); in PacketedBioCreate()
|
D | bssl_shim.cc | 142 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/ |
D | bio_test.cc | 106 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/ |
D | client.cc | 94 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()
|
D | genrsa.cc | 56 ScopedBIO bio(BIO_new_fp(stdout, BIO_NOCLOSE)); in GenerateRSAKey()
|
/external/libchrome/crypto/ |
D | openssl_bio_string_unittest.cc | 20 ScopedBIO bio(BIO_new_string(&s)); in TEST() 46 ScopedBIO bio(BIO_new_string(&s)); in TEST()
|
D | scoped_openssl_types.h | 46 using ScopedBIO = ScopedOpenSSL<BIO, BIO_free_all>; variable
|
D | rsa_private_key_openssl.cc | 39 ScopedBIO bio(BIO_new(BIO_s_mem())); in ExportKey()
|
/external/boringssl/src/crypto/pkcs8/ |
D | pkcs12_test.cc | 711 ScopedBIO bio(BIO_new_mem_buf((void*) der, der_len)); in TestCompat()
|
/external/boringssl/src/crypto/evp/ |
D | evp_test.cc | 117 ScopedBIO bio(BIO_new_mem_buf(const_cast<char*>(block.data()), block.size())); in ImportPrivateKey()
|
/external/boringssl/src/crypto/test/ |
D | scoped_types.h | 98 using ScopedBIO = ScopedOpenSSLType<BIO, BIO_vfree>; variable
|
/external/boringssl/src/ssl/ |
D | ssl_test.cc | 790 ScopedBIO bio(BIO_new(BIO_s_mem())); in GetClientHelloLen()
|