;; ;; md5 - Scheme wrapper for Colin Plumb's Public Domain md5 implementation ;; ;; All code in this egg is in the Public Domain (module md5 () (import scheme (chicken module)) (import md5-primitive) (reexport md5-primitive) ) ;md5