winform+dev的前后台分离标准项目
lg
2024-09-02 59abbe4785268a10ec9390b8373cce3939c1d24b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Gs.Toolbox
{
    public class PasswordHelper
    {
        #region  密码加密
        /**/
        /// <summary>  
        /// 转半角的函数(DBC case)   
        /// </summary>   
        /// <param name="input">任意字符串</param>   
        /// <returns>半角字符串</returns>   
        ///<remarks>   
        ///全角空格为12288,半角空格为32   
        ///其他字符半角(33-126)与全角(65281-65374)的对应关系是:均相差65248   
        ///</remarks>   
        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);
        }
 
        /// <summary>
        /// 转大写
        /// </summary>
        /// <param name="input"></param>
        /// <returns></returns>
        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();
        }
 
        /// <summary>
        /// MD5加密
        /// </summary>
        /// <param name="strTxt"></param>
        /// <returns></returns>
        public static string ToMd5(string strTxt)
        {
            strTxt = ToUp(strTxt);
            // return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(strTxt, "MD5");
            return strTxt;
        }
        #endregion
    }
}