diff options
Diffstat (limited to 'lib/libcrypto/evp/e_idea.c')
-rw-r--r-- | lib/libcrypto/evp/e_idea.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcrypto/evp/e_idea.c b/lib/libcrypto/evp/e_idea.c index 7dd385e04e2..3ba4dbcdb97 100644 --- a/lib/libcrypto/evp/e_idea.c +++ b/lib/libcrypto/evp/e_idea.c @@ -1,4 +1,4 @@ -/* $OpenBSD: e_idea.c,v 1.8 2014/07/10 22:45:57 jsing Exp $ */ +/* $OpenBSD: e_idea.c,v 1.9 2014/07/11 08:44:48 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -60,13 +60,13 @@ #include <openssl/opensslconf.h> -#include "cryptlib.h" - #ifndef OPENSSL_NO_IDEA + #include <openssl/evp.h> +#include <openssl/idea.h> #include <openssl/objects.h> + #include "evp_locl.h" -#include <openssl/idea.h> static int idea_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, const unsigned char *iv, int enc); |