Software Development Network>> Visual C#>> Is there a checksum class in Windows forms c# development?
I'm trying to use checksum to compare data Is there any checksum tool/class I can use from windows forms
Thanks.
Enkh.
There are 2 classes in System.Security.Cryptography, MD5 and SHA1 these classes are used to computer hash and varify it on some data. RSACryptoServiceProvider can also be used in the same namespace.
Best Regards,
Is there a checksum class in Windows forms c# development?
inzel
There are 2 classes in System.Security.Cryptography, MD5 and SHA1 these classes are used to computer hash and varify it on some data. RSACryptoServiceProvider can also be used in the same namespace.
Best Regards,
Nightman28