| Allegro CL version 8.1 Unrevised from 8.0 to 8.1. 8.0 version |
Arguments: context &key return
Compute and return the SHA1 digest from context, an integer of length 128 or less. sha1-init returns a context, in a format determined by the return keyword argument.
return can be one of the following values:
cl-user(4): (setq c (sha1-init)) #(1 35 69 103 137 171 205 239 254 220 ...) cl-user(5): (sha1-update c "foo") cl-user(6): (sha1-final c :return :usb8) #(11 238 199 181 234 63 15 219 201 93 ...)
See MD5, SHA1, HMAC, and RC4 support in miscellaneous.htm.
Copyright (c) 1998-2009, Franz Inc. Oakland, CA., USA. All rights reserved.
Documentation for Allegro CL version 8.1. This page was not revised from the 8.0 page.
Created 2009.7.29.
| Allegro CL version 8.1 Unrevised from 8.0 to 8.1. 8.0 version |