Home | History | Annotate | Download | only in dsa

Lines Matching defs:dsa

67 /* DSA pkey context structure */
126 DSA *dsa = ctx->pkey->pkey.dsa;
133 ret = DSA_sign(type, tbs, tbslen, sig, &sltmp, dsa);
147 DSA *dsa = ctx->pkey->pkey.dsa;
154 ret = DSA_verify(type, tbs, tbslen, sig, siglen, dsa);
240 DSA *dsa = NULL;
251 dsa = DSA_new();
252 if (!dsa)
254 ret = dsa_builtin_paramgen(dsa, dctx->nbits, dctx->qbits, dctx->pmd,
257 EVP_PKEY_assign_DSA(pkey, dsa);
259 DSA_free(dsa);
265 DSA *dsa = NULL;
271 dsa = DSA_new();
272 if (!dsa)
274 EVP_PKEY_assign_DSA(pkey, dsa);
278 return DSA_generate_key(pkey->pkey.dsa);