Home
last modified time | relevance | path

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

/external/chromium_org/third_party/boringssl/src/crypto/dh/
Ddh_impl.c255 static int compute_key(DH *dh, unsigned char *out, const BIGNUM *pub_key) { in compute_key() function
264 OPENSSL_PUT_ERROR(DH, compute_key, DH_R_MODULUS_TOO_LARGE); in compute_key()
279 OPENSSL_PUT_ERROR(DH, compute_key, DH_R_NO_PRIVATE_VALUE); in compute_key()
290 OPENSSL_PUT_ERROR(DH, compute_key, DH_R_INVALID_PUBKEY); in compute_key()
297 OPENSSL_PUT_ERROR(DH, compute_key, ERR_R_BN_LIB); in compute_key()
322 compute_key,
Ddh.c151 if (dh->meth->compute_key) { in DH_compute_key()
152 return dh->meth->compute_key(dh, out, peers_key); in DH_compute_key()
154 return DH_default_method.compute_key(dh, out, peers_key); in DH_compute_key()
/external/openssl/crypto/dh/
Ddh_key.c66 static int compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh);
97 return dh->meth->compute_key(key, pub_key, dh); in DH_compute_key()
103 compute_key,
203 static int compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh) in compute_key() function
Ddh.h117 int (*compute_key)(unsigned char *key,const BIGNUM *pub_key,DH *dh); member
/external/openssl/crypto/ecdh/
Dech_key.c79 return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF); in ECDH_compute_key()
Dech_locl.h68 int (*compute_key)(void *key, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh, member
/external/chromium_org/third_party/boringssl/src/include/openssl/
Ddh.h221 int (*compute_key)(DH *dh, uint8_t *out, const BIGNUM *pub_key); member
/external/openssl/crypto/engine/
Deng_cryptodev.c1297 return ((meth->compute_key)(key, pub_key, dh)); in cryptodev_dh_compute_key()
1321 dhret = (meth->compute_key)(key, pub_key, dh); in cryptodev_dh_compute_key()
1435 cryptodev_dh.compute_key = dh_meth->compute_key; in ENGINE_load_cryptodev()
1440 cryptodev_dh.compute_key = in ENGINE_load_cryptodev()
/external/openssl/include/openssl/
Ddh.h117 int (*compute_key)(unsigned char *key,const BIGNUM *pub_key,DH *dh); member
/external/openssl/crypto/jpake/
Djpake.c381 static int compute_key(JPAKE_CTX *ctx, const BIGNUM *gx) in compute_key() function
435 compute_key(ctx, received->gx); in JPAKE_STEP2_process()