Home | History | Annotate | Download | only in ecdsa

Lines Matching refs:curves

81 	puts("Elliptic curves are disabled.");
286 EC_builtin_curve *curves = NULL;
310 "with some internal curves:\n");
312 /* get a list of all internal curves */
315 curves = OPENSSL_malloc(sizeof(EC_builtin_curve) * crv_len);
317 if (curves == NULL)
323 if (!EC_get_builtin_curves(curves, crv_len))
325 BIO_printf(out, "unable to get internal curves\n");
334 nid = curves[n].nid;
520 if (curves)
521 OPENSSL_free(curves);