1. 程式人生 > >C# 生成隨機密碼(隨機字符串)的代碼

C# 生成隨機密碼(隨機字符串)的代碼

eva bit phy ide abc == ring eval sta

把做工程過程中較好的內容段做個收藏,下面的內容是關於C# 生成隨機密碼(隨機字符串)的內容,應該能對各位朋友有些幫助。

 private static int getNewSeed()
 {
     byte[] rndBytes = new byte[4];
     System.Security.Cryptography.RNGCryptoServiceProvider rng = new System.Security.Cryptography.RNGCryptoServiceProvider();
     rng.GetBytes(rndBytes);
    return BitConverter.ToInt32(rndBytes, 0);
static public string GetRandomString(int len)
{
    string s = "123456789abcdefghijklmnpqrstuvwxyzABCDEFGHIJKLMNPQRSTUVWXYZ";
    string reValue = string.Empty;
    Random rnd = new Random(getNewSeed());
    while (reValue.Length < len)
    {
        string s1 = s[rnd.Next(0, s.Length)].ToString();
        if (reValue.IndexOf(s1) == -1) reValue += s1;
    }
   return reValue;
}

C# 生成隨機密碼(隨機字符串)的代碼