]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - lib/smblib/md4.c
SourceFormat Enforcement
[thirdparty/squid.git] / lib / smblib / md4.c
index 1cfb224a6eddcb450286ef6be4eeeea10a4fc29e..460559813e15895ac0618b06b3ca8d52eb7e5c98 100644 (file)
@@ -1,11 +1,19 @@
-#include "squid.h"
+/*
+ * Copyright (C) 1996-2015 The Squid Software Foundation and contributors
+ *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
+ */
 
 /*
  * Unix SMB/Netbios implementation.
  * Version 1.9.
  * a implementation of MD4 designed for use in the SMB authentication protocol
  * Copyright (C) Andrew Tridgell 1997
- *
+ */
+
+/*
  * 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
@@ -21,6 +29,7 @@
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
+#include "squid.h"
 #include <string.h>
 #include "smblib/md4.h"
 
@@ -211,3 +220,4 @@ mdfour(unsigned char *out, unsigned char *in, int n)
 
     A = B = C = D = 0;
 }
+