X-Git-Url: http://andersk.mit.edu/gitweb/gssapi-openssh.git/blobdiff_plain/58b60d163a3c1a5735240ec1697d437b7aaf524a..699b5bd687b2564532db9bfc36049045ed79f5ad:/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).