文件 校验 算法:MD5、SHA1、SHA256、SHA384、SHA512、CRC32、CRC64
编程语言:C#
文件属性内容
校验算法:MD5、SHA1、SHA256、SHA384、SHA512、CRC32、CRC64。
核心代码:
using System;
using System.Collections.Generic;
using System;
using System.Text;
using System.Threading;
using System.Security;
using System.Security.Cryptography;
using System.Data.HashFunction;
namespace HashChecker
{
/// <summary>
/// There are some kinds of hash algorithm in this class likes MD5, SHA1, SHA256, SHA384, SHA512, CRC32, CRC64.
/// 此类提供MD5,SHA1,SHA256,SHA384,SHA512,CRC32,CRC64等几种数据摘要算法。
/// </summary>
public static class HashFunction
{
/// <summary>
/// Caculate string's MD5 value. 计算字符串的MD5值。
/// </summary>
/// <param name="strIN">input string. 输入的字符串。</param>
/// <returns>Return MD5 value. 返回MD5值。</returns>
public static string md5(string strIN)
{
return md5(System.Text.Encoding.Default.GetBytes(strIN));
}
/// <summary>
/// Caculate string's MD5 value. 计算字符串的MD5值。
/// </summary>
/// <param name="btIN">input Byte Array. 输入的字节数组。</param>
/// <returns>Return MD5 value. 返回MD5值。</returns>
public static string md5(Byte[] btIN)
{
System.Security.Cryptography.MD5 md5 = new MD5CryptoServiceProvider();
byte[] bytResult = md5.ComputeHash(btIN);