Lines Matching defs:dh
119 DH *dh;
123 dhvalue = t_strdup_noconst(set->dh);
132 dh = NULL;
133 dh = PEM_read_bio_DHparams(bio, &dh, NULL, NULL);
135 if (dh == NULL) {
140 *dh_r = dh;
141 return dh == NULL ? -1 : 0;
169 DH *dh;
172 if (openssl_iostream_load_dh(set, &dh, error_r) < 0)
174 if (SSL_CTX_set_tmp_dh(ctx->ssl_ctx, dh) == 0) {
180 DH_free(dh);
423 if (set->dh != NULL) {