Tag: md5
-
Example of Using MD5 in C#
In this blog post, we will explore an example of using MD5 in C#. MD5 is a widely used cryptographic hash function that produces a 128-bit (16-byte) hash value. It is commonly used to verify the integrity of data and to store passwords securely.
-
How to create a md5 hash in C#
Here a quick example how to create from an string an md5 hash in c# and output it as string. The only difficult is to convert from string to byte array and back again. So i have to method, one accept the byte array direct and returns a byte array, the second method handles the […]