e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/lib/md5.c src/lib/md5.c
index 2666eef..e7a7ce3 100644
--- src/lib/md5.c
+++ src/lib/md5.c
@@ -1,21 +1,24 @@
 /*
  * RFC 1321 compliant MD5 implementation,
  * by Christophe Devine <devine@cr0.net>;
  * this program is licensed under the GPL.
  */
 
+/* Copyright (C) 2013 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "md5.h"
 #include "hex.h"
 #include "linefile.h"
 #include "hash.h"
 
 
 #define GET_UINT32(n,b,i)					\
 {								\
     (n) = (uint32) ((uint8 *) b)[(i)]				\
       | (((uint32) ((uint8 *) b)[(i)+1]) <<  8)			\
       | (((uint32) ((uint8 *) b)[(i)+2]) << 16)			\
       | (((uint32) ((uint8 *) b)[(i)+3]) << 24);		\
 }