checksum Topic is solved
checksum
Is there a wx-way to get checksums like crc, md5 or anything else?
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,
crc is really easy to write, for an md5,
look at this class
http://wxcode.sourceforge.net/docs/webu ... wxMD5.html
regards,
spectrum
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.
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.