Page 1 of 1

checksum

Posted: Fri Oct 02, 2009 3:09 pm
by MoonKid
Is there a wx-way to get checksums like crc, md5 or anything else?

Posted: Fri Oct 02, 2009 3:19 pm
by spectrum
no as part of the official library,

crc is really easy to write, for an md5,
look at this class

http://wxcode.sourceforge.net/docs/webu ... wxMD5.html

regards,

Posted: Sun Oct 11, 2009 8:40 am
by Debster
try this:

http://www.cryptopp.com/

this lib can easily integrated in wx apps and has a lot of usefull things, like encryption, hash functions (the checksum you are looking for) and other nice things like base64 encoding/decoding.