From: Bodo Möller Date: Mon, 28 Oct 2002 15:40:47 +0000 (+0000) Subject: increase permissible message length so that we can handle X-Git-Tag: OpenSSL_0_9_6h~67 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=96eef150d64854154b6ae5de412b4731a0aed82f;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 e4451e2bc7..cd122da8f1 100644 --- a/ssl/s3_srvr.c +++ b/ssl/s3_srvr.c @@ -1566,7 +1566,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);