summaryrefslogtreecommitdiff
path: root/src/lib/libssl/src/apps/dsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/src/apps/dsa.c')
-rw-r--r--src/lib/libssl/src/apps/dsa.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/src/lib/libssl/src/apps/dsa.c b/src/lib/libssl/src/apps/dsa.c
index 81040193c7..4026ba5d22 100644
--- a/src/lib/libssl/src/apps/dsa.c
+++ b/src/lib/libssl/src/apps/dsa.c
@@ -56,21 +56,24 @@
56 * [including the GNU Public Licence.] 56 * [including the GNU Public Licence.]
57 */ 57 */
58 58
59#include <openssl/opensslconf.h>/* for OPENSSL_NO_DSA */ 59#include <openssl/opensslconf.h> /* for OPENSSL_NO_DSA */
60
60#ifndef OPENSSL_NO_DSA 61#ifndef OPENSSL_NO_DSA
62
61#include <stdio.h> 63#include <stdio.h>
62#include <stdlib.h> 64#include <stdlib.h>
63#include <string.h>
64#include <time.h> 65#include <time.h>
66#include <string.h>
67
65#include "apps.h" 68#include "apps.h"
69
66#include <openssl/bio.h> 70#include <openssl/bio.h>
67#include <openssl/err.h> 71#include <openssl/bn.h>
68#include <openssl/dsa.h> 72#include <openssl/dsa.h>
73#include <openssl/err.h>
69#include <openssl/evp.h> 74#include <openssl/evp.h>
70#include <openssl/x509.h>
71#include <openssl/pem.h> 75#include <openssl/pem.h>
72#include <openssl/bn.h> 76#include <openssl/x509.h>
73
74 77
75/* -inform arg - input format - default PEM (one of DER, NET or PEM) 78/* -inform arg - input format - default PEM (one of DER, NET or PEM)
76 * -outform arg - output format - default PEM 79 * -outform arg - output format - default PEM