5de3f571c67d95a6a93ca67261b4a4c17c37cf18
[sbcl.git] / contrib / sb-md5 / sb-md5.texinfo
1 @node sb-md5
2 @section sb-md5
3 @cindex Hashing, cryptographic
4
5 The @code{sb-md5} module implements the RFC1321 MD5 Message Digest
6 Algorithm.
7
8 @include fun-sb-md5-md5sum-file.texinfo
9
10 @include fun-sb-md5-md5sum-sequence.texinfo
11
12 @include fun-sb-md5-md5sum-stream.texinfo
13
14 @subsection Credits
15
16 The implementation for CMUCL was largely done by Pierre Mai, with help
17 from members of the @code{cmucl-help} mailing list.  Since CMUCL and
18 SBCL are similar in many respects, it was not too difficult to extend
19 the low-level implementation optimizations for CMUCL to SBCL.
20 Following this, SBCL's compiler was extended to implement efficient
21 compilation of modular arithmetic (@pxref{Modular arithmetic}), which
22 enabled the implementation to be expressed in portable arithmetical
23 terms, apart from the use of @code{rotate-byte} for bitwise rotation.
24 @findex rotate-byte
25