[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

bernd.edlinger at hotmail.de bernd.edlinger at hotmail.de
Mon Mar 26 13:14:43 UTC 2018


The branch OpenSSL_1_0_2-stable has been updated
       via  3ffc95b1a9d14d8833f6f116a0afe0fb83eeaa17 (commit)
      from  d591f300f9dfec4f8345b25714bdc85f0b30dfa1 (commit)


- Log -----------------------------------------------------------------
commit 3ffc95b1a9d14d8833f6f116a0afe0fb83eeaa17
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date:   Sun Mar 25 12:50:17 2018 +0200

    Fix dsaparam -genkey with DER outform
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/5744)
    
    (cherry picked from commit 5281435258b5d8201a00b4a9781bb724d99630f0)

-----------------------------------------------------------------------

Summary of changes:
 apps/dsaparam.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/apps/dsaparam.c b/apps/dsaparam.c
index f2cf553..3a4a123 100644
--- a/apps/dsaparam.c
+++ b/apps/dsaparam.c
@@ -382,6 +382,9 @@ int MAIN(int argc, char **argv)
         printf("\treturn(dsa);\n\t}\n");
     }
 
+    if (outformat == FORMAT_ASN1 && genkey)
+        noout = 1;
+
     if (!noout) {
         if (outformat == FORMAT_ASN1)
             i = i2d_DSAparams_bio(out, dsa);


More information about the openssl-commits mailing list