Home | History | Annotate | Download | only in ssl

Lines Matching refs:named_curve

367 	fprintf(stderr," -named_curve arg  - Elliptic curve name to use for ephemeral ECDH keys.\n" \
518 char *named_curve = NULL;
748 else if (strcmp(*argv,"-named_curve") == 0)
752 named_curve = *(++argv);
754 fprintf(stderr,"ignoring -named_curve, since I'm compiled without ECDH\n");
947 if (named_curve != NULL)
949 nid = OBJ_sn2nid(named_curve);
952 BIO_printf(bio_err, "unknown curve name (%s)\n", named_curve);