Fix broken build

Add includes missing from commit 33eab3f6af51c6d7fe68ee4960930df4f1616bd5

Reviewed-by: Geoff Thorpe <geoff@openssl.org>
This commit is contained in:
Emilia Kasper 2014-12-05 16:08:12 +01:00
parent 33eab3f6af
commit f50ffd10fa
4 changed files with 4 additions and 3 deletions

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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;
}

View File

@ -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"