From: Bodo Möller Date: Mon, 28 Oct 2002 15:45:51 +0000 (+0000) Subject: increase permissible message length so that we can handle X-Git-Tag: OpenSSL_0_9_7-beta4~18^2~107 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=00a357ab203b4153eee970ffb33f0f22ef59f734 increase permissible message length so that we can handle CertificateVerify for 4096 bit RSA signatures --- diff --git a/ssl/s3_srvr.c b/ssl/s3_srvr.c index 98c950a343..b1fff12191 100644 --- a/ssl/s3_srvr.c +++ b/ssl/s3_srvr.c @@ -2127,7 +2127,7 @@ static int ssl3_get_cert_verify(SSL *s) SSL3_ST_SR_CERT_VRFY_A, SSL3_ST_SR_CERT_VRFY_B, -1, - 512, /* 512? */ + 514, /* 514? */ &ok); if (!ok) return((int)n);