CSharp examples for System.Security.Cryptography:SHA1
Hash Sha 256 password
using System.Threading.Tasks; using System.Text; using System.Linq; using System.Collections.Generic; using System;//from w ww . ja v a2 s.c o m public class Main{ public static string HashSha256(string password) { System.Security.Cryptography.SHA256Managed crypt = new System.Security.Cryptography.SHA256Managed(); System.Text.StringBuilder hash = new System.Text.StringBuilder(); byte[] crypto = crypt.ComputeHash(Encoding.UTF8.GetBytes(password), 0, Encoding.UTF8.GetByteCount(password)); foreach (byte theByte in crypto) { hash.Append(theByte.ToString("x2")); } return hash.ToString(); } }