Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/dh/
Ddh_impl.c258 static int compute_key(DH *dh, unsigned char *out, const BIGNUM *pub_key) { in compute_key() function
267 OPENSSL_PUT_ERROR(DH, compute_key, DH_R_MODULUS_TOO_LARGE); in compute_key()
282 OPENSSL_PUT_ERROR(DH, compute_key, DH_R_NO_PRIVATE_VALUE); in compute_key()
293 OPENSSL_PUT_ERROR(DH, compute_key, DH_R_INVALID_PUBKEY); in compute_key()
300 OPENSSL_PUT_ERROR(DH, compute_key, ERR_R_BN_LIB); in compute_key()
325 compute_key,
Ddh.c159 if (dh->meth->compute_key) { in DH_compute_key()
160 return dh->meth->compute_key(dh, out, peers_key); in DH_compute_key()
162 return DH_default_method.compute_key(dh, out, peers_key); in DH_compute_key()
/external/boringssl/src/crypto/err/
Ddh.errordata2 DH,function,101,compute_key
/external/boringssl/src/include/openssl/
Ddh.h230 int (*compute_key)(DH *dh, uint8_t *out, const BIGNUM *pub_key); member