Searched refs:compute_key (Results 1 – 10 of 10) sorted by relevance
/external/chromium_org/third_party/boringssl/src/crypto/dh/ |
D | dh_impl.c | 255 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,
|
D | dh.c | 151 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/ |
D | dh_key.c | 66 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
|
D | dh.h | 117 int (*compute_key)(unsigned char *key,const BIGNUM *pub_key,DH *dh); member
|
/external/openssl/crypto/ecdh/ |
D | ech_key.c | 79 return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF); in ECDH_compute_key()
|
D | ech_locl.h | 68 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/ |
D | dh.h | 221 int (*compute_key)(DH *dh, uint8_t *out, const BIGNUM *pub_key); member
|
/external/openssl/crypto/engine/ |
D | eng_cryptodev.c | 1297 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/ |
D | dh.h | 117 int (*compute_key)(unsigned char *key,const BIGNUM *pub_key,DH *dh); member
|
/external/openssl/crypto/jpake/ |
D | jpake.c | 381 static int compute_key(JPAKE_CTX *ctx, const BIGNUM *gx) in compute_key() function 435 compute_key(ctx, received->gx); in JPAKE_STEP2_process()
|