Searched defs:dh2 (Results 1 - 1 of 1) sorted by relevance

/bind-9.6-ESV-R11/lib/dns/
H A Dopenssldh_link.c106 DH *dh1, *dh2; local
109 dh2 = key2->keydata.dh;
111 if (dh1 == NULL && dh2 == NULL)
113 else if (dh1 == NULL || dh2 == NULL)
116 status = BN_cmp(dh1->p, dh2->p) ||
117 BN_cmp(dh1->g, dh2->g) ||
118 BN_cmp(dh1->pub_key, dh2->pub_key);
123 if (dh1->priv_key != NULL || dh2->priv_key != NULL) {
124 if (dh1->priv_key == NULL || dh2->priv_key == NULL)
126 if (BN_cmp(dh1->priv_key, dh2
135 DH *dh1, *dh2; local
[all...]

Completed in 10 milliseconds