compute_key
static int compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh);
return dh->meth->compute_key(key, pub_key, dh);
.compute_key = compute_key,
int (*compute_key)(unsigned char *key,const BIGNUM *pub_key,DH *dh);
meth->compute_key = ckey;
*pck = meth->compute_key;
.compute_key = ossl_ecdh_compute_key,
int (*compute_key)(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
.compute_key = ecdh_compute_key
return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF);
if (eckey->meth->compute_key != NULL)
return eckey->meth->compute_key(out, outlen, pub_key, eckey, KDF);
int (*compute_key)(void *key, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,