FunctionPackage: exclToCDocOverviewCGDocRelNotesIndexPermutedIndex
Allegro CL version 7.0
Object described on page has changed in 7.0.

md5-final

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-2006, Franz Inc. Oakland, CA., USA. All rights reserved.
Documentation for Allegro CL version 7.0. The object described on this page has been modified in the 7.0 release; see the Release Notes.
Created 2005.9.20.

ToCDocOverviewCGDocRelNotesIndexPermutedIndex
Allegro CL version 7.0
Object described on page has changed in 7.0.