summaryrefslogtreecommitdiff
path: root/cipher-ctr.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher-ctr.c')
-rw-r--r--cipher-ctr.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/cipher-ctr.c b/cipher-ctr.c
index 8a98f3c42..b24f3a428 100644
--- a/cipher-ctr.c
+++ b/cipher-ctr.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: cipher-ctr.c,v 1.10 2006/08/03 03:34:42 deraadt Exp $ */
1/* 2/*
2 * Copyright (c) 2003 Markus Friedl <markus@openbsd.org> 3 * Copyright (c) 2003 Markus Friedl <markus@openbsd.org>
3 * 4 *
@@ -14,12 +15,16 @@
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */ 16 */
16#include "includes.h" 17#include "includes.h"
17RCSID("$OpenBSD: cipher-ctr.c,v 1.6 2005/07/17 07:17:55 djm Exp $"); 18
19#include <sys/types.h>
20
21#include <stdarg.h>
22#include <string.h>
18 23
19#include <openssl/evp.h> 24#include <openssl/evp.h>
20 25
21#include "log.h"
22#include "xmalloc.h" 26#include "xmalloc.h"
27#include "log.h"
23 28
24/* compatibility with old or broken OpenSSL versions */ 29/* compatibility with old or broken OpenSSL versions */
25#include "openbsd-compat/openssl-compat.h" 30#include "openbsd-compat/openssl-compat.h"