Searched refs:bio_data (Results 1 – 3 of 3) sorted by relevance
/external/boringssl/src/crypto/pkcs8/ |
D | pkcs12_test.cc | 1778 const uint8_t *bio_data; in TestRoundTrip() local 1780 ASSERT_TRUE(BIO_mem_contents(bio.get(), &bio_data, &bio_len)); in TestRoundTrip() 1781 EXPECT_EQ(Bytes(bio_data, bio_len), Bytes(der, len)); in TestRoundTrip()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/pkcs8/ |
D | pkcs12_test.cc | 1778 const uint8_t *bio_data; in TestRoundTrip() local 1780 ASSERT_TRUE(BIO_mem_contents(bio.get(), &bio_data, &bio_len)); in TestRoundTrip() 1781 EXPECT_EQ(Bytes(bio_data, bio_len), Bytes(der, len)); in TestRoundTrip()
|
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/ |
D | backend.py | 481 bio_data = self._ffi.buffer(buf[0], buf_len)[:] 482 return bio_data 1069 bio_data = self._bytes_to_bio(data) 1070 key = self._evp_pkey_from_der_traditional_key(bio_data, password) 1083 def _evp_pkey_from_der_traditional_key(self, bio_data, password): argument 1084 key = self._lib.d2i_PrivateKey_bio(bio_data.bio, self._ffi.NULL)
|