C# 获取 sha256 码
用 C# 获取 sha256, 输入源可以是 字符串类型,也可以是 字节流类型: 实现方式如下: 自定义的输入类型的枚举: public enum Sha26ParseType { StringType,//字符串类型 StreamType//字节流类型 } 实现代码: public static string general_sha256_code(string str, Sha26ParseType type) { string result = string.Empty; byte[] by = null; //求字节流的SHA256 if (type.Equals(Sha26ParseType.StreamType)) { if (!System.IO.File.Exists(str)) return result; System.IO.FileStream stream = new System.IO.FileStream(str, System.IO.FileMode.Open, System.IO.FileAccess.Read); System.Security.Cryptography.SHA256Managed Sha256 = new System.Security.Cryptography.SHA256Managed(); by = […]