diff --git a/md5.asd b/md5.asd new file mode 100644 index 0000000..be318bf --- /dev/null +++ b/md5.asd @@ -0,0 +1,19 @@ +;;;; MD5 --- RFC 1321 The MD5 Message-Digest Algorithm +;;;; + +(cl:in-package #:cl-user) + +;;;; %File Description: +;;;; +;;;; This file contains the system definition form for the MD5 +;;;; Library. System definitions use the ASDF system definition +;;;; facility. +;;;; + +(asdf:defsystem "md5" + :description "The MD5 Message-Digest Algorithm RFC 1321" + :author "Pierre R. Mai " + :maintainer "Pierre R. Mai " + :licence "Public Domain" + :version "2.0.0" + :components ((:file "md5")))