summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorEmilia Kasper <emilia@openssl.org>2014-12-05 16:08:12 +0100
committerEmilia Kasper <emilia@openssl.org>2014-12-05 16:18:20 +0100
commitf50ffd10fa08c0762489119a4f36fa86163679ef (patch)
tree6655a5c89d77926396dbfced828974bf7e3fcac5 /engines
parent33eab3f6af51c6d7fe68ee4960930df4f1616bd5 (diff)
Fix broken build
Add includes missing from commit 33eab3f6af51c6d7fe68ee4960930df4f1616bd5 Reviewed-by: Geoff Thorpe <geoff@openssl.org>
Diffstat (limited to 'engines')
-rw-r--r--engines/ccgost/gost94_keyx.c2
-rw-r--r--engines/ccgost/gost_crypt.c2
-rw-r--r--engines/ccgost/gost_pmeth.c2
-rw-r--r--engines/ccgost/gost_sign.c1
4 files changed, 4 insertions, 3 deletions
diff --git a/engines/ccgost/gost94_keyx.c b/engines/ccgost/gost94_keyx.c
index d48e21ae7c..79726c1be6 100644
--- a/engines/ccgost/gost94_keyx.c
+++ b/engines/ccgost/gost94_keyx.c
@@ -11,6 +11,7 @@
#include <string.h>
#include <openssl/dh.h>
#include <openssl/rand.h>
+#include <openssl/err.h>
#include <openssl/evp.h>
#include <openssl/objects.h>
@@ -288,4 +289,3 @@ err:
GOST_KEY_TRANSPORT_free(gkt);
return -1;
}
-
diff --git a/engines/ccgost/gost_crypt.c b/engines/ccgost/gost_crypt.c
index e640414ae3..a6aa4f1a1e 100644
--- a/engines/ccgost/gost_crypt.c
+++ b/engines/ccgost/gost_crypt.c
@@ -8,6 +8,7 @@
**********************************************************************/
#include <string.h>
#include "gost89.h"
+#include <openssl/err.h>
#include <openssl/rand.h>
#include "e_gost_err.h"
#include "gost_lcl.h"
@@ -631,4 +632,3 @@ int gost_imit_cleanup(EVP_MD_CTX *ctx)
memset(ctx->md_data,0,sizeof(struct ossl_gost_imit_ctx));
return 1;
}
-
diff --git a/engines/ccgost/gost_pmeth.c b/engines/ccgost/gost_pmeth.c
index 7ccae8657e..4520387fc8 100644
--- a/engines/ccgost/gost_pmeth.c
+++ b/engines/ccgost/gost_pmeth.c
@@ -10,6 +10,7 @@
#include <openssl/evp.h>
#include <openssl/objects.h>
#include <openssl/ec.h>
+#include <openssl/err.h>
#include <openssl/x509v3.h> /*For string_to_hex */
#include <stdlib.h>
#include <string.h>
@@ -640,4 +641,3 @@ int register_pmeth_gost(int id, EVP_PKEY_METHOD **pmeth,int flags)
return 1;
}
-
diff --git a/engines/ccgost/gost_sign.c b/engines/ccgost/gost_sign.c
index c0224fd3fb..93a1f270d6 100644
--- a/engines/ccgost/gost_sign.c
+++ b/engines/ccgost/gost_sign.c
@@ -11,6 +11,7 @@
#include <openssl/rand.h>
#include <openssl/bn.h>
#include <openssl/dsa.h>
+#include <openssl/err.h>
#include <openssl/evp.h>
#include "gost_params.h"