summaryrefslogtreecommitdiff
path: root/epan/crypt-md4.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-09-27 23:29:22 +0000
committerGuy Harris <guy@alum.mit.edu>2004-09-27 23:29:22 +0000
commitd3f5261971af423b220eda7f852e7511b0b571da (patch)
tree720ddc4100ebba632114bb6d592fafc1a5ee29ee /epan/crypt-md4.h
parentbbe7f89742d53c8ca19ab93793380aa847de9ca4 (diff)
downloadwireshark-d3f5261971af423b220eda7f852e7511b0b571da.tar.gz
Move the DES, MD4, MD5, and RC4 source files and headers into epan, and
make the source files all include the corresponding header files (so that the declarations in the headers have to match the definitions in the source files in order for compilation to succeed). svn path=/trunk/; revision=12116
Diffstat (limited to 'epan/crypt-md4.h')
-rw-r--r--epan/crypt-md4.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/epan/crypt-md4.h b/epan/crypt-md4.h
new file mode 100644
index 0000000000..17b251d1da
--- /dev/null
+++ b/epan/crypt-md4.h
@@ -0,0 +1,23 @@
+/*
+ Unix SMB/CIFS implementation.
+ a implementation of MD4 designed for use in the SMB authentication protocol
+ Copyright (C) Andrew Tridgell 1997-1998.
+
+ $Id$
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+void crypt_md4(unsigned char *out, const unsigned char *in, int n);