using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gs.Toolbox
{
public class PasswordHelper
{
#region 密码加密
/**/
///
/// 转半角的函数(DBC case)
///
/// 任意字符串
/// 半角字符串
///
///全角空格为12288,半角空格为32
///其他字符半角(33-126)与全角(65281-65374)的对应关系是:均相差65248
///
private static string ToDBC(string input)
{
char[] c = input.ToCharArray();
for (int i = 0; i < c.Length; i++)
{
if (c[i] == 12288)
{
c[i] = (char)32;
continue;
}
if (c[i] > 65280 && c[i] < 65375)
c[i] = (char)(c[i] - 65248);
}
return new string(c);
}
///
/// 转大写
///
///
///
private static string ToUp(string input)
{
string s = ToDBC(input);
System.Text.StringBuilder sb = new StringBuilder();
char[] c = s.ToCharArray();
for (int i = 0; i < c.Length; i++)
{
sb.Append(c[i].ToString().ToUpper());
}
return sb.ToString();
}
///
/// MD5加密
///
///
///
public static string ToMd5(string strTxt)
{
strTxt = ToUp(strTxt);
// return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(strTxt, "MD5");
return strTxt;
}
#endregion
}
}