diff options
author | 2006-07-22 20:48:22 +0000 | |
---|---|---|
committer | 2006-07-22 20:48:22 +0000 | |
commit | 0deb67942b30c1593c2410880c6206349479cd2f (patch) | |
tree | 9acb3eb91469c8753beea5543419000531af95bd /usr.bin/ssh/cipher.c | |
parent | move #include <time.h> out of includes.h (diff) | |
download | wireguard-openbsd-0deb67942b30c1593c2410880c6206349479cd2f.tar.xz wireguard-openbsd-0deb67942b30c1593c2410880c6206349479cd2f.zip |
move #include <string.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/cipher.c')
-rw-r--r-- | usr.bin/ssh/cipher.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/ssh/cipher.c b/usr.bin/ssh/cipher.c index 28ba0c2de68..ff98a864a9e 100644 --- a/usr.bin/ssh/cipher.c +++ b/usr.bin/ssh/cipher.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cipher.c,v 1.79 2006/03/25 13:17:01 djm Exp $ */ +/* $OpenBSD: cipher.c,v 1.80 2006/07/22 20:48:22 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -37,12 +37,14 @@ #include "includes.h" +#include <openssl/md5.h> + +#include <string.h> + #include "xmalloc.h" #include "log.h" #include "cipher.h" -#include <openssl/md5.h> - extern const EVP_CIPHER *evp_ssh1_bf(void); extern const EVP_CIPHER *evp_ssh1_3des(void); extern void ssh1_3des_iv(EVP_CIPHER_CTX *, int, u_char *, int); |