summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2002-10-28 15:45:51 +0000
committerBodo Möller <bodo@openssl.org>2002-10-28 15:45:51 +0000
commit00a357ab203b4153eee970ffb33f0f22ef59f734 (patch)
tree0554b668e3b57d23538307ebfc9010fe3ceba465 /ssl
parent8ee4845b65189096ae38144a349479f47a81a4ed (diff)
increase permissible message length so that we can handle
CertificateVerify for 4096 bit RSA signatures
Diffstat (limited to 'ssl')
-rw-r--r--ssl/s3_srvr.c2
1 files changed, 1 insertions, 1 deletions
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);