Lines Matching defs:dctx
83 DSA_PKEY_CTX *dctx;
84 dctx = OPENSSL_malloc(sizeof(DSA_PKEY_CTX));
85 if (!dctx)
87 dctx->nbits = 1024;
88 dctx->qbits = 160;
89 dctx->pmd = NULL;
90 dctx->md = NULL;
92 ctx->data = dctx;
93 ctx->keygen_info = dctx->gentmp;
101 DSA_PKEY_CTX *dctx, *sctx;
105 dctx = dst->data;
106 dctx->nbits = sctx->nbits;
107 dctx->qbits = sctx->qbits;
108 dctx->pmd = sctx->pmd;
109 dctx->md = sctx->md;
115 DSA_PKEY_CTX *dctx = ctx->data;
116 if (dctx)
117 OPENSSL_free(dctx);
125 DSA_PKEY_CTX *dctx = ctx->data;
128 if (dctx->md)
129 type = EVP_MD_type(dctx->md);
146 DSA_PKEY_CTX *dctx = ctx->data;
149 if (dctx->md)
150 type = EVP_MD_type(dctx->md);
161 DSA_PKEY_CTX *dctx = ctx->data;
167 dctx->nbits = p1;
173 dctx->qbits = p1;
184 dctx->md = p2;
196 dctx->md = p2;
241 DSA_PKEY_CTX *dctx = ctx->data;
254 ret = dsa_builtin_paramgen(dsa, dctx->nbits, dctx->qbits, dctx->pmd,