SHA-256(Source Code in C# using .Net in-built Cryptography library) - Part II

.Net Framework provides in built support for various hash functions like MD-5, SHA-1, SHA-256 etc...

ComputeHash method Computes the hash value to the specified byte array.

Below are the overloaded methods to Compute Hash using SHA-256 class in System.Security.Cryptography  library

public byte[] ComputeHash(byte[] buffer)
public byte[] ComputeHash(Stream inputStream)
public byte[] ComputeHash(byte[] buffer, int offset, int count)


Comments

Popular posts from this blog

113+ Collection C# Code Problems for Beginners