From: Bodo Möller Date: Mon, 28 Oct 2002 15:47:44 +0000 (+0000) Subject: increase permissible message length so that we can handle X-Git-Tag: OpenSSL_0_9_7-beta4~99 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2ccb522c5b1825726b2027b71c3d63ba8f843b55;p=oweals%2Fopenssl.git 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 5b00d18a68..d60bf348af 100644 --- a/ssl/s3_srvr.c +++ b/ssl/s3_srvr.c @@ -1747,7 +1747,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);