X-Git-Url: http://andersk.mit.edu/gitweb/gssapi-openssh.git/blobdiff_plain/51f1e7024fd6e7881a0a713868d67861ba97fbfb..cdaf3e9d646e031c9354e0f6056c869263085379:/openssh/cipher-bf1.c diff --git a/openssh/cipher-bf1.c b/openssh/cipher-bf1.c index 64578ba..e0e33b4 100644 --- a/openssh/cipher-bf1.c +++ b/openssh/cipher-bf1.c @@ -1,3 +1,4 @@ +/* $OpenBSD: cipher-bf1.c,v 1.5 2006/08/03 03:34:42 deraadt Exp $ */ /* * Copyright (c) 2003 Markus Friedl. All rights reserved. * @@ -23,11 +24,19 @@ */ #include "includes.h" -RCSID("$OpenBSD: cipher-bf1.c,v 1.1 2003/05/15 03:08:29 markus Exp $"); + +#include #include + +#include +#include + #include "xmalloc.h" #include "log.h" + +#include "openbsd-compat/openssl-compat.h" + /* * SSH1 uses a variation on Blowfish, all bytes must be swapped before * and after encryption/decryption. Thus the swap_bytes stuff (yuk).