Function Package: excl ToC DocOverview CGDoc RelNotes Index PermutedIndex
Allegro CL version 6.2
Moderately modified after initial 6.2 release.

md5-string

Arguments: string &key usb8-result

Using md5-init, md5-update, and md5-final, compute the MD5 checksum for string. Returns the value returned by md5-final on the implicitly created context. If the usb8-result keyword argument is specified true, the result is returned in an (unsigned-byte 8) array format:

cl-user(4): (md5-string "foo")
229609063533823256041787889330700985560
cl-user(5): (md5-final "foo" :usb8-result t)
#(172 189 24 219 76 194 248 92 237 239 ...)
cl-user(6): 

See MD5 support in miscellaneous.htm.


Copyright (c) 1998-2002, Franz Inc. Oakland, CA., USA. All rights reserved.
Documentation for Allegro CL version 6.2. This page was not revised from the 6.1 page.
Created 2002.2.26.

ToC DocOverview CGDoc RelNotes Index PermutedIndex
Allegro CL version 6.2
Unrevised from 6.1 to 6.2.