mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
11 lines
327 B
Scheme
11 lines
327 B
Scheme
|
|
;;> Implementation of the MD5 (Message Digest) cryptographic hash. In
|
|
;;> new applications SHA-2 should be preferred.
|
|
|
|
(define-library (chibi crypto md5)
|
|
(import (scheme base) (chibi bytevector))
|
|
(cond-expand
|
|
((library (srfi 60)) (import (srfi 60)))
|
|
(else (import (srfi 33))))
|
|
(export md5)
|
|
(include "md5.scm"))
|