summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/apps/pkeyutl.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libssl/src/apps/pkeyutl.c')
-rw-r--r--lib/libssl/src/apps/pkeyutl.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libssl/src/apps/pkeyutl.c b/lib/libssl/src/apps/pkeyutl.c
index c112c773b91..46392e6902e 100644
--- a/lib/libssl/src/apps/pkeyutl.c
+++ b/lib/libssl/src/apps/pkeyutl.c
@@ -55,12 +55,13 @@
*
*/
+#include <string.h>
#include "apps.h"
-#include <string.h>
+
#include <openssl/err.h>
-#include <openssl/pem.h>
#include <openssl/evp.h>
+#include <openssl/pem.h>
#define KEY_PRIVKEY 1
#define KEY_PUBKEY 2
@@ -68,8 +69,6 @@
static void usage(void);
-
-
static EVP_PKEY_CTX *init_ctx(int *pkeysize,
char *keyfile, int keyform, int key_type,
char *passargin, int pkey_op, ENGINE * e);