Home
last modified time | relevance | path

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

/openbmc/bmcweb/src/
H A Dssl_key_handler.cpp157 BIO* bufio = BIO_new_mem_buf(static_cast<void*>(fileContents.data()), in verifyOpensslKeyCert() local
159 EVP_PKEY* pkey = PEM_read_bio_PrivateKey(bufio, nullptr, nullptr, nullptr); in verifyOpensslKeyCert()
160 BIO_free(bufio); in verifyOpensslKeyCert()
326 BIO* bufio = BIO_new(BIO_s_mem()); in constructX509() local
328 int pkeyRet = PEM_write_bio_PrivateKey(bufio, pPrivKey, nullptr, nullptr, 0, in constructX509()
337 long int dataLen = BIO_get_mem_data(bufio, &data); in constructX509()
339 BIO_free(bufio); in constructX509()
341 bufio = BIO_new(BIO_s_mem()); in constructX509()
342 pkeyRet = PEM_write_bio_X509(bufio, x509); in constructX509()
348 dataLen = BIO_get_mem_data(bufio, &data); in constructX509()
[all …]