Lines Matching defs:curve
555 tls_config_set_ecdhecurve(struct tls_config *config, const char *curve)
557 if (curve == NULL ||
558 strcasecmp(curve, "none") == 0 ||
559 strcasecmp(curve, "auto") == 0) {
560 curve = TLS_ECDHE_CURVES;
561 } else if (strchr(curve, ',') != NULL || strchr(curve, ':') != NULL) {
563 "invalid ecdhe curve '%s'", curve);
567 return tls_config_set_ecdhecurves(config, curve);
605 "invalid ecdhe curve '%s'", p);