summaryrefslogtreecommitdiffstats
path: root/lib/libc/hash/md4.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* zap remaining rcsid.espie2005-08-081-5/+1
| | | | | | Kill old files that are no longer compiled. okay theo
* In the Final function, move the context zeroing into the digest != NULLmillert2004-05-281-3/+3
| | | | | scope so that passing a NULL digest is equivalent to the Pad function (like it used to be). Fixes skey w/ sha1 as noticed by David Krause.
* Some u_char -> u_int8_t conversion I missed earlier.millert2004-05-031-3/+3
|
* Add Pad and FileChunk functions for each family of hash functions.millert2004-05-031-8/+17
| | | | | | The Pad function does padding like in Final but does not finish processing. The FileChunk function creates a digest from a portion of a file. Also made the length parameters consistent (and size_t).
* Sync with md5.c rev. 1.4millert2004-04-291-128/+83
|
* Pass sizeof(*pointer) not sizeof(point) to memset. Karsten Desler.millert2004-04-281-3/+3
|
* PD md4 code derived from Colin Plumb's md5 routines.millert2004-04-281-0/+271