Tag: code snippet

  • Example SHA256 hash in C#

    Example SHA256 hash in C#

    Here is short code snippet to create a SHA256 hash in C#. 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 convert from string to byte array and back again.…