summaryrefslogtreecommitdiffstats
path: root/sys/lib/libkern/md5.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Replace RSA-derived md5 code with code derived from Colin Plumb's PD version.millert2004-05-071-366/+0
| | | | | | This moves md5.c out of libkern and into sys/crypto where it belongs (as requested by markus@). Note that md5.c is still mandatory (dev/rnd.c uses it). Verified with IPsec + hmac-md5 and tcp md5sig. OK henning@ and hshoexer@
* KNF, ok deraadt/henningmarkus2003-12-021-257/+241
|
* make it use system bcopy/bzero (speeds up the vax about twice); from pr3549mickey2003-11-241-1/+2
|
* spelling; from Brian Poole <raj@cerias.purdue.edu>todd2002-06-141-2/+2
|
* First round of __P removal in sysmillert2002-03-141-6/+6
|
* Don't include sys/systm.h if we include stand.h.art2000-11-081-3/+3
|
* eliminate comment about HAVEHTONS since the conditional implied is no longer present in the sourcegrr1997-06-061-4/+1
|
* fixed bcopy/memcpy conflict by using private mem* routines.mickey1997-04-041-4/+5
| | | | | | changed generic pointer type to (void *) and, md5 is in libkern, since more than one component of the kernel uses it. what would be better place? well, imagine some lkm that uses md5 someday...
* no more 2(two) md5 libs in kernel!mickey1997-03-301-146/+361
| | | | | | | tested for rnd(4).... should work for ip too, since it's the copy of ip_md*. use sys/md5k.h for protos.... std iface forever! hurray!
* make -Wstrict-prototypes happyniklas1996-08-111-2/+3
|
* Fix copyrights, comments, etc.mickey1996-04-241-5/+4
|
* Add MD5 routines to be used by anyone in the kernel.mickey1996-04-171-0/+168
Moved from dev/rnd.c