projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d84aa43
)
We set the export flag for 512 *bit* keys, not 512 *byte* ones.
author
Richard Levitte
<levitte@openssl.org>
Thu, 19 Jun 2003 18:55:53 +0000
(18:55 +0000)
committer
Richard Levitte
<levitte@openssl.org>
Thu, 19 Jun 2003 18:55:53 +0000
(18:55 +0000)
PR: 587
crypto/x509/x509type.c
patch
|
blob
|
history
diff --git
a/crypto/x509/x509type.c
b/crypto/x509/x509type.c
index 11e7b516935e32b384c2a7e50dcf7fa8a5b8da37..f78c2a6b43806edc1aed901ffa7ea0db3cd8890a 100644
(file)
--- a/
crypto/x509/x509type.c
+++ b/
crypto/x509/x509type.c
@@
-106,7
+106,8
@@
int X509_certificate_type(X509 *x, EVP_PKEY *pkey)
break;
}
- if (EVP_PKEY_size(pk) <= 512)
+ if (EVP_PKEY_size(pk) <= 512/8) /* /8 because it's 512 bits we look
+ for, not bytes */
ret|=EVP_PKT_EXP;
if(pkey==NULL) EVP_PKEY_free(pk);
return(ret);