Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/core/adapter/huks/src/
H A Dsoftbus_rsa_encrypt.c253 BIO *pBio = NULL; in DataToPublicKey() local
259 pBio = BIO_new(BIO_s_mem()); in DataToPublicKey()
260 if (pBio == NULL) { in DataToPublicKey()
264 res = BIO_write(pBio, bufKey, bufKeyLen); in DataToPublicKey()
267 BIO_free(pBio); in DataToPublicKey()
270 *pubKey = d2i_RSA_PUBKEY_bio(pBio, NULL); in DataToPublicKey()
273 BIO_free(pBio); in DataToPublicKey()
276 BIO_free(pBio); in DataToPublicKey()