summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/aes/aes_ige.c
diff options
context:
space:
mode:
authorjsing <>2014-07-11 08:44:49 +0000
committerjsing <>2014-07-11 08:44:49 +0000
commit74e2c009c83ad374bd6acdcfc376a384e25ab007 (patch)
tree0e726f9e971e00f4c8cd8afab71589803fc11b7f /src/lib/libcrypto/aes/aes_ige.c
parent7610da071a20f4325acc14cb2e961617a821ab35 (diff)
downloadopenbsd-74e2c009c83ad374bd6acdcfc376a384e25ab007.tar.gz
openbsd-74e2c009c83ad374bd6acdcfc376a384e25ab007.tar.bz2
openbsd-74e2c009c83ad374bd6acdcfc376a384e25ab007.zip
Only import cryptlib.h in the four source files that actually need it.
Remove the openssl public includes from cryptlib.h and add a small number of includes into the source files that actually need them. While here, also sort/group/tidy the includes. ok beck@ miod@
Diffstat (limited to 'src/lib/libcrypto/aes/aes_ige.c')
-rw-r--r--src/lib/libcrypto/aes/aes_ige.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/aes/aes_ige.c b/src/lib/libcrypto/aes/aes_ige.c
index d5dc5967f4..a8dec0a361 100644
--- a/src/lib/libcrypto/aes/aes_ige.c
+++ b/src/lib/libcrypto/aes/aes_ige.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: aes_ige.c,v 1.5 2014/06/12 15:49:27 deraadt Exp $ */ 1/* $OpenBSD: aes_ige.c,v 1.6 2014/07/11 08:44:47 jsing Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 2006 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -49,9 +49,9 @@
49 * 49 *
50 */ 50 */
51 51
52#include "cryptlib.h"
53
54#include <openssl/aes.h> 52#include <openssl/aes.h>
53#include <openssl/crypto.h>
54
55#include "aes_locl.h" 55#include "aes_locl.h"
56 56
57#define N_WORDS (AES_BLOCK_SIZE / sizeof(unsigned long)) 57#define N_WORDS (AES_BLOCK_SIZE / sizeof(unsigned long))