summaryrefslogtreecommitdiff
path: root/cipher.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher.c')
-rw-r--r--cipher.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/cipher.c b/cipher.c
index 1434d5524..b264063c4 100644
--- a/cipher.c
+++ b/cipher.c
@@ -1,3 +1,4 @@
1/* $OpenBSD: cipher.c,v 1.81 2006/08/03 03:34:42 deraadt Exp $ */
1/* 2/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -35,14 +36,18 @@
35 */ 36 */
36 37
37#include "includes.h" 38#include "includes.h"
38RCSID("$OpenBSD: cipher.c,v 1.77 2005/07/16 01:35:24 djm Exp $"); 39
40#include <sys/types.h>
41
42#include <openssl/md5.h>
43
44#include <string.h>
45#include <stdarg.h>
39 46
40#include "xmalloc.h" 47#include "xmalloc.h"
41#include "log.h" 48#include "log.h"
42#include "cipher.h" 49#include "cipher.h"
43 50
44#include <openssl/md5.h>
45
46/* compatibility with old or broken OpenSSL versions */ 51/* compatibility with old or broken OpenSSL versions */
47#include "openbsd-compat/openssl-compat.h" 52#include "openbsd-compat/openssl-compat.h"
48 53