winform+dev的前后台分离标准项目
lg
2024-08-29 2d1860637f076849948acfcb3159cf9faafeed47
密码加密
已添加2个文件
85 ■■■■■ 文件已修改
WebApi/Gs.Toolbox/PasswordHelper.cs 68 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebApi/Gs.Toolbox/UtilityHelper.cs 17 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
WebApi/Gs.Toolbox/PasswordHelper.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,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
    }
}
WebApi/Gs.Toolbox/UtilityHelper.cs
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Gs.Toolbox
{
    public static class UtilityHelper
    {
        public static Guid? GetGuid(string? str) {
            if (string.IsNullOrEmpty(str))
                return null;
            return Guid.Parse(str);
        }
    }
}