Home
last modified time | relevance | path

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

/hardware/interfaces/identity/support/src/
DIdentityCredentialSupport.cpp608 void operator()(BIGNUM* bignum) const { in operator ()()
609 if (bignum != nullptr) { in operator ()()
610 BN_free(bignum); in operator ()()
1039 const BIGNUM* bignum = EC_KEY_get0_private_key(ecKey.get()); in ecKeyPairGetPrivateKey() local
1040 if (bignum == nullptr) { in ecKeyPairGetPrivateKey()
1045 privateKey.resize(BN_num_bytes(bignum)); in ecKeyPairGetPrivateKey()
1046 BN_bn2bin(bignum, privateKey.data()); in ecKeyPairGetPrivateKey()