mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-19 13:49:17 +02:00
12 lines
373 B
Scheme
12 lines
373 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 151)) (import (srfi 151)))
|
|
((library (srfi 33)) (import (srfi 33)))
|
|
(else (import (srfi 60))))
|
|
(export md5)
|
|
(include "md5.scm"))
|