Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2002-10-28 18:47:44 +0300
committerBodo Möller <bodo@openssl.org>2002-10-28 18:47:44 +0300
commit2ccb522c5b1825726b2027b71c3d63ba8f843b55 (patch)
tree2fc89b5dcd3baca5a644a8e956296df23c7f3b3c /ssl
parent0bf76767b0478c96b41ace51fcf03bac5138f606 (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 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);