From: Richard Levitte Date: Fri, 28 Nov 2003 22:39:20 +0000 (+0000) Subject: 1024 is the export key bits limit according to current regulations, not 512. X-Git-Tag: OpenSSL_0_9_6m~18 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bc4de7940fd3e897dcf09d69be3bd519469442a1;p=oweals%2Fopenssl.git 1024 is the export key bits limit according to current regulations, not 512. PR: 771 Submitted by: c zhang --- diff --git a/crypto/x509/x509type.c b/crypto/x509/x509type.c index f78c2a6b43..c25959a742 100644 --- a/crypto/x509/x509type.c +++ b/crypto/x509/x509type.c @@ -106,7 +106,7 @@ int X509_certificate_type(X509 *x, EVP_PKEY *pkey) break; } - if (EVP_PKEY_size(pk) <= 512/8) /* /8 because it's 512 bits we look + if (EVP_PKEY_size(pk) <= 1024/8)/* /8 because it's 1024 bits we look for, not bytes */ ret|=EVP_PKT_EXP; if(pkey==NULL) EVP_PKEY_free(pk);