Lines Matching defs:capi_dsa_method
400 static DSA_METHOD *capi_dsa_method = NULL;
447 if ( !DSA_meth_set_sign(capi_dsa_method, capi_dsa_do_sign)
448 || !DSA_meth_set_verify(capi_dsa_method,
450 || !DSA_meth_set_finish(capi_dsa_method, capi_dsa_free)
451 || !DSA_meth_set_mod_exp(capi_dsa_method,
453 || !DSA_meth_set_bn_mod_exp(capi_dsa_method,
503 DSA_meth_free(capi_dsa_method);
504 capi_dsa_method = NULL;
539 capi_dsa_method = DSA_meth_new("CryptoAPI DSA method", 0);
540 if (capi_dsa_method == NULL)
551 || !ENGINE_set_DSA(e, capi_dsa_method)
566 DSA_meth_free(capi_dsa_method);
567 capi_dsa_method = NULL;