message-digest
Documentation
A message-digest is a function taking some input and returning a fixed-length hash. The Message Digest suite of CHICKEN eggs provides support for a separation of digest algorithm and message source.
Eggs, such as sha2, provide one or more sha...-primitive modules; many have bit-length variants. The primitive modules package the algorithm and the message-digest-utils module packages the message source support. The message-digest-type module supports efficient re-use of the same primitive with many different sources.
Please consult the documentation of the eggs in the Requirements section for usage information and examples.
Usage
(import message-digest-basic)- message-digest-primitive, message-digest-type, message-digest-chunk, message-digest-byte-vector, message-digest-int
(import message-digest)- message-digest-basic plus message-digest-srfi-4, message-digest-update-item, message-digest-item, message-digest-port
Requirements
message-digest-primitive message-digest-type message-digest-utils
Author
Repository
This egg is hosted on the CHICKEN Subversion repository:
https://anonymous@code.call-cc.org/svn/chicken-eggs/release/5/message-digest
If you want to check out the source code repository of this egg and you are not familiar with Subversion, see this page.
Version history
- 4.4.0
- CHICKEN 6 release.
License
Copyright (C) 2006-2026 Kon Lovett. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED ASIS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.