summaryrefslogtreecommitdiffstats
path: root/crypto/dsa
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2021-02-23 16:51:43 +0100
committerTomas Mraz <tomas@openssl.org>2021-02-24 17:55:20 +0100
commit53cefef62ba7b1262374874aa8ce0aa34419d8ff (patch)
tree4d2aeda048aa6fd59f17f12bd57890eeac8af04c /crypto/dsa
parent7415ffe36896a6cce6f83db5ec1c54e69213c5b1 (diff)
Remove inclusion of unnecessary header files
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14290)
Diffstat (limited to 'crypto/dsa')
-rw-r--r--crypto/dsa/dsa_lib.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/crypto/dsa/dsa_lib.c b/crypto/dsa/dsa_lib.c
index fd56203539..7e5be3208d 100644
--- a/crypto/dsa/dsa_lib.c
+++ b/crypto/dsa/dsa_lib.c
@@ -13,15 +13,13 @@
*/
#include "internal/deprecated.h"
-#include <stdio.h>
-#include "internal/cryptlib.h"
-#include "internal/refcount.h"
#include <openssl/bn.h>
-#include <openssl/asn1.h>
#include <openssl/engine.h>
-#include "dsa_local.h"
+#include "internal/cryptlib.h"
+#include "internal/refcount.h"
#include "crypto/dsa.h"
#include "crypto/dh.h" /* required by DSA_dup_DH() */
+#include "dsa_local.h"
static DSA *dsa_new_intern(ENGINE *engine, OSSL_LIB_CTX *libctx);