using System;
using System.Collections.Generic;
using System.Security.Cryptography;
using System.Text;
namespace CC.ElectronicCommerce.Core
{
///
/// 加密用的
///
public class MD5Helper
{
///
/// MD5 加密字符串
///
/// 源字符串
/// 加密后字符串
public static string MD5EncodingOnly(string content)
{
// 创建MD5类的默认实例:MD5CryptoServiceProvider
MD5 md5 = MD5.Create();
byte[] bs = Encoding.UTF8.GetBytes(content);
byte[] hs = md5.ComputeHash(bs);
StringBuilder stb = new StringBuilder();
foreach (byte b in hs)
{
// 以十六进制格式格式化
stb.Append(b.ToString("x2"));
}
return stb.ToString();
}
///
/// MD5盐值加密
///
/// 源字符串
/// 盐值
/// 加密后字符串
public static string MD5EncodingWithSalt(string content, string salt)
{
if (salt == null) return content;
return MD5EncodingOnly(content + "{" + salt.ToString() + "}");
}
}
}