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:
adb46db
)
Don't SEGFAULT when trying to export a public DSA key as a private key.
author
Adam Langley
<agl@chromium.org>
Thu, 21 Feb 2013 22:11:55 +0000
(17:11 -0500)
committer
Ben Laurie
<ben@links.org>
Thu, 13 Jun 2013 16:03:35 +0000
(17:03 +0100)
crypto/dsa/dsa_ameth.c
patch
|
blob
|
history
diff --git
a/crypto/dsa/dsa_ameth.c
b/crypto/dsa/dsa_ameth.c
index 376156ec5ef3a6ad23539296601180f7b4fa1472..5f6e6f595fe55646dd3d2e394a1f47172200fad2 100644
(file)
--- a/
crypto/dsa/dsa_ameth.c
+++ b/
crypto/dsa/dsa_ameth.c
@@
-307,6
+307,12
@@
static int dsa_priv_encode(PKCS8_PRIV_KEY_INFO *p8, const EVP_PKEY *pkey)
unsigned char *dp = NULL;
int dplen;
+ if (!pkey->pkey.dsa->priv_key)
+ {
+ DSAerr(DSA_F_DSA_PRIV_ENCODE,DSA_R_MISSING_PARAMETERS);
+ goto err;
+ }
+
params = ASN1_STRING_new();
if (!params)