DH_get0_pqg
DH_get0_pqg(cryptoctx->dh, (const BIGNUM **)&p, (const BIGNUM **)&q,
DH_get0_pqg(dh, &p, &q, &g);
DH_get0_pqg(cryptoctx->dh_1024, &p2, NULL, NULL);
DH_get0_pqg(cryptoctx->dh_2048, &p2, NULL, NULL);
DH_get0_pqg(cryptoctx->dh_4096, &p2, NULL, NULL);
DH_get0_pqg(dh, &p, &g, &q);
DH_get0_pqg(plg_cryptoctx->dh_1024, &p, &q, &g);
DH_get0_pqg(plg_cryptoctx->dh_2048, &p, &q, &g);
DH_get0_pqg(plg_cryptoctx->dh_4096, &p, &q, &g);
DH_get0_pqg(dh, &p, &q, &g);
DH_get0_pqg(cryptoctx->dh_1024, &p2, NULL, NULL);
DH_get0_pqg(cryptoctx->dh_2048, &p2, NULL, NULL);
DH_get0_pqg(cryptoctx->dh_4096, &p2, NULL, NULL);
void DH_get0_pqg(const DH *dh, const BIGNUM **p, const BIGNUM **q,