]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/checksums/md5/md5.factor
Fixing basis -> extra dependencies
[factor.git] / basis / checksums / md5 / md5.factor
index f0e0c71c19aa99ae6bc940741a504f6038c58ea7..6158254f84a589ac420a7196289b27095e0e6ba6 100755 (executable)
@@ -1,11 +1,14 @@
-! See http://www.faqs.org/rfcs/rfc1321.html
-
+! Copyright (C) 2006, 2008 Doug Coleman.
+! See http://factorcode.org/license.txt for BSD license.
 USING: kernel io io.binary io.files io.streams.byte-array math
 math.functions math.parser namespaces splitting grouping strings
-sequences crypto.common byte-arrays locals sequences.private
-io.encodings.binary symbols math.bitfields.lib checksums ;
+sequences byte-arrays locals sequences.private
+io.encodings.binary symbols math.bitwise checksums
+checksums.common ;
 IN: checksums.md5
 
+! See http://www.faqs.org/rfcs/rfc1321.html
+
 <PRIVATE
 
 SYMBOLS: a b c d old-a old-b old-c old-d ;