/external/openssl/crypto/ecdh/ |
ech_key.c | 79 return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF);
|
ech_locl.h | 68 int (*compute_key)(void *key, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh, member in struct:ecdh_method
|
/external/chromium_org/third_party/boringssl/src/crypto/dh/ |
dh_impl.c | 255 static int compute_key(DH *dh, unsigned char *out, const BIGNUM *pub_key) { function 264 OPENSSL_PUT_ERROR(DH, compute_key, DH_R_MODULUS_TOO_LARGE); 279 OPENSSL_PUT_ERROR(DH, compute_key, DH_R_NO_PRIVATE_VALUE); 290 OPENSSL_PUT_ERROR(DH, compute_key, DH_R_INVALID_PUBKEY); 297 OPENSSL_PUT_ERROR(DH, compute_key, ERR_R_BN_LIB); 322 compute_key,
|
dh.c | 151 if (dh->meth->compute_key) { 152 return dh->meth->compute_key(dh, out, peers_key); 154 return DH_default_method.compute_key(dh, out, peers_key);
|
/external/openssl/crypto/dh/ |
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); 103 compute_key, 203 static int compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh) function
|
dh.h | 117 int (*compute_key)(unsigned char *key,const BIGNUM *pub_key,DH *dh); member in struct:dh_method
|
/external/chromium_org/third_party/boringssl/src/include/openssl/ |
dh.h | 220 /* compute_key is called by |DH_compute_key|. */ 221 int (*compute_key)(DH *dh, uint8_t *out, const BIGNUM *pub_key); member in struct:dh_method
|
/external/openssl/include/openssl/ |
dh.h | 117 int (*compute_key)(unsigned char *key,const BIGNUM *pub_key,DH *dh); member in struct:dh_method
|
/external/openssl/crypto/engine/ |
eng_cryptodev.c | 1297 return ((meth->compute_key)(key, pub_key, dh)); 1321 dhret = (meth->compute_key)(key, pub_key, dh); [all...] |
/external/openssl/crypto/jpake/ |
jpake.c | 381 static int compute_key(JPAKE_CTX *ctx, const BIGNUM *gx) function 435 compute_key(ctx, received->gx);
|