| Allegro CL version 8.0 Unrevised from 7.0 to 8.0. | |||||||||
Arguments: context &key return
Compute and return the MD5 checksum from context, an integer of length 128 or less. md5-init returns a context, in a format determined by the return keyword argument.
return can be one of the following values:
In an earlier version, the keyword argument to md5-final was named
:usb8-result rather than :return
and only two return modes were provided: :integer
(with ':usb8-result nil') and :usb8 (with
':usb8-result t'). The :usb8-result is no longer
supported.
cl-user(4): (setq c (md5-init)) #(1 35 69 103 137 171 205 239 254 220 ...) cl-user(5): (md5-update c "foo") cl-user(6): (md5-final c :return :usb8) #(172 189 24 219 76 194 248 92 237 239 ...)
See MD5, SHA1, HMAC, and RC4 support in miscellaneous.htm.
Copyright (c) 1998-2008, Franz Inc. Oakland, CA., USA. All rights reserved.
Documentation for Allegro CL version 8.0. This page was not revised from the 7.0 page.
Created 2005.12.9.
| Allegro CL version 8.0 Unrevised from 7.0 to 8.0. | |||||||||