Home | History | Annotate | Download | only in ecdsa

Lines Matching full:curves

81 	puts("Elliptic curves are disabled.");
286 EC_builtin_curve *curves = NULL;
306 "with some internal curves:\n");
308 /* get a list of all internal curves */
311 curves = OPENSSL_malloc(sizeof(EC_builtin_curve) * crv_len);
313 if (curves == NULL)
319 if (!EC_get_builtin_curves(curves, crv_len))
321 BIO_printf(out, "unable to get internal curves\n");
330 nid = curves[n].nid;
448 if (curves)
449 OPENSSL_free(curves);