1. 程式人生 > >C#生成滿足特定要求的密碼

C#生成滿足特定要求的密碼

amp .com += converter phy class ram pan esp

代碼1

   Random m_rnd = new Random();
        public char getRandomChar()
        {
            int ret = m_rnd.Next(122);
            while (ret < 48 || (ret > 57 && ret < 65) || (ret > 90 && ret < 97))
            {
                ret = m_rnd.Next(122);
            }
            
return (char)ret; } public string getRandomString(int length) { StringBuilder sb = new StringBuilder(length); for (int i = 0; i < length; i++) { sb.Append(getRandomChar()); } return sb.ToString(); }

代碼2 - 支持自定義字符的混合

//隨機字符串生成器的主要功能如下: 
        //1、支持自定義字符串長度
        //2、支持自定義是否包含數字
        //3、支持自定義是否包含小寫字母
        //4、支持自定義是否包含大寫字母
        //5、支持自定義是否包含特殊符號
        //6、支持自定義字符集

        ///<summary>
        ///生成隨機字符串
        ///</summary>
        ///<param name="length">目標字符串的長度</param>
        ///
<param name="useNum">是否包含數字,1=包含,默認為包含</param> ///<param name="useLow">是否包含小寫字母,1=包含,默認為包含</param> ///<param name="useUpp">是否包含大寫字母,1=包含,默認為包含</param> ///<param name="useSpe">是否包含特殊字符,1=包含,默認為不包含</param> ///<param name="custom">要包含的自定義字符,直接輸入要包含的字符列表</param> ///<returns>指定長度的隨機字符串</returns> public string GetRnd(int length, bool useNum, bool useLow, bool useUpp, bool useSpe, string custom) { byte[] b = new byte[4]; new System.Security.Cryptography.RNGCryptoServiceProvider().GetBytes(b); Random r = new Random(BitConverter.ToInt32(b, 0)); string s = null, str = custom; if (useNum == true) { str += "0123456789"; } if (useLow == true) { str += "abcdefghijklmnopqrstuvwxyz"; } if (useUpp == true) { str += "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; } if (useSpe == true) { str += "!\"#$%&‘()*+,-./:;<=>?@[\\]^_`{|}~"; } for (int i = 0; i < length; i++) { s += str.Substring(r.Next(0, str.Length - 1), 1); } return s; }

本文轉載自 http://www.cnblogs.com/phcis/archive/2011/01/12/1933632.html

C#生成滿足特定要求的密碼