summaryrefslogtreecommitdiff
path: root/cipher-aes.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher-aes.c')
-rw-r--r--cipher-aes.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/cipher-aes.c b/cipher-aes.c
index 228ddb104..3ea594969 100644
--- a/cipher-aes.c
+++ b/cipher-aes.c
@@ -28,9 +28,13 @@
28#include "openbsd-compat/openssl-compat.h" 28#include "openbsd-compat/openssl-compat.h"
29 29
30#ifdef USE_BUILTIN_RIJNDAEL 30#ifdef USE_BUILTIN_RIJNDAEL
31RCSID("$OpenBSD: cipher-aes.c,v 1.2 2003/11/26 21:44:29 djm Exp $"); 31#include <sys/types.h>
32 32
33#include <openssl/evp.h> 33#include <openssl/evp.h>
34
35#include <stdarg.h>
36#include <string.h>
37
34#include "rijndael.h" 38#include "rijndael.h"
35#include "xmalloc.h" 39#include "xmalloc.h"
36#include "log.h" 40#include "log.h"