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.



Answer this question

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

    Have a look at documentation for (eg:) the MD5 class in System.Security.Cryptography

  • Is there a checksum class in Windows forms c# development?