Commit d372d365 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

allow ECDSA+SHA384 signature algorithm in SUITEB128ONLY mode

parent 36b5bb6f
Loading
Loading
Loading
Loading
+1 −5
Original line number Original line Diff line number Diff line
@@ -332,13 +332,9 @@ static void tls1_get_curvelist(SSL *s, int sess,
	switch (tls1_suiteb(s))
	switch (tls1_suiteb(s))
		{
		{
	case SSL_CERT_FLAG_SUITEB_128_LOS:
	case SSL_CERT_FLAG_SUITEB_128_LOS:
		*pcurves = suiteb_curves;
		*pcurveslen = sizeof(suiteb_curves);
		break;

	case SSL_CERT_FLAG_SUITEB_128_LOS_ONLY:
	case SSL_CERT_FLAG_SUITEB_128_LOS_ONLY:
		*pcurves = suiteb_curves;
		*pcurves = suiteb_curves;
		*pcurveslen = 2;
		*pcurveslen = sizeof(suiteb_curves);
		break;
		break;


	case SSL_CERT_FLAG_SUITEB_192_LOS:
	case SSL_CERT_FLAG_SUITEB_192_LOS: