aboutsummaryrefslogtreecommitdiffstats
path: root/epan/crypt/crypt-md5.c
AgeCommit message (Collapse)AuthorFilesLines
2007-04-23Need to include <epan/pint.h> to get pletohl() defined.Guy Harris1-0/+1
svn path=/trunk/; revision=21544
2007-04-23byteReverse assumes its argument is aligned on a 32-bit boundary; makeGuy Harris1-10/+9
it a pointer to a guint32. Also, use pletohl() to fetch a 32-bit little-endian quantity. svn path=/trunk/; revision=21542
2007-04-23The "in" array in an MD5 context is expected to be aligned on a 4-byteGuy Harris1-11/+11
boundary; make it an array of 16 guint32's rather than 64 guint8's, to ensure that, and add now-necessary casts and remove now-unnecessary casts. svn path=/trunk/; revision=21540
2007-03-26Don't #define bzero and bcopy to be memset and memcpy on Windows, just use ↵Jeff Morriss1-9/+4
memset and memcpy instead. svn path=/trunk/; revision=21201
2007-01-09Move cryptography code to epan/crypt.Gerald Combs1-16/+16
svn path=/trunk/; revision=20359
2007-01-09Win32 has neither bcopy nor bzeroLuis Ontanon1-0/+5
svn path=/trunk/; revision=20357
2007-01-09 * replaced MD5 with one that that works on my Big Endian Mac. ( taken from ↵Luis Ontanon1-413/+328
www.pjsip.org, which BTW took it from some other place) * externalize SHA1 functions and data types svn path=/trunk/; revision=20351
2007-01-02Move epan/crypt-md5.[ch] to epan/crypt. RemoveGerald Combs1-0/+449
epan/crypt/airpdcap_md5.[ch]. Fix up whitespace. svn path=/trunk/; revision=20277