關於C# 的高效隨機字串 (轉)
使用RNGCryptoServiceProvr 做種,可以在一秒內產生的隨機數重複率非常的低,對於以往使用時間做種的方法是個升級,程式碼如下:
using System;
using System.Security.Cryptography;
namespace ArLi.CommonPrj
{
///
/// 隨機密碼
///
public sealed class RanStr {
public const string myVersion = "1.2";
/********
* Const and Function
* ********/
private static readonly int defaultLength = 8;
private static int GetNewSeed(){
byte[] rnytes = new byte[4];
RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider();
rng.GetBytes(rndBytes);
return BitConverter.ToInt32(rndBytes,0);
}
/********
* getRndCode of all char .
* ********/
private static string BuildRndCodeAll(int strLen) {
System.Random RandomObj = new System.Random(GetNewSeed());
string buildRndCodeReturn = null;
for(int i=0; i
}
return buildRndCodeReturn;
}
public static string GetRndStrOfAll() {
return BuildRndCodeAll(defaultLength);
}
public static string GetRndStrOfAll(int LenOf) {
return BuildRndCodeAll(LenOf);
}
/********
* getRndCode of only .
* ********/
private static string sCharLow = "abcdefghijklmnopqrstuvwxyz";
private static string sCharUpp = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
private static string sNumber = "0123456789";
private static string BuildRndCodeOnly(string StrOf,int strLen) {
System.Random RandomObj = new System.Random(GetNewSeed());
string buildRndCodeReturn = null;
for(int i=0; i
}
return buildRndCodeReturn;
}
public static string GetRndStrOnlyFor() {
return BuildRndCodeOnly(sCharLow + sNumber,defaultLength);
}
public static string GetRndStrOnlyFor(int LenOf) {
return BuildRndCodeOnly(sCharLow + sNumber,LenOf);
}
public static string GetRndStrOnlyFor(bool bUseUpper,bool bUseNumber) {
string strTmp = sCharLow;
if (bUseUpper) strTmp += sCharUpp;
if (bUseNumber) strTmp += sNumber;
return BuildRndCodeOnly(strTmp,defaultLength);
}
public static string GetRndStrOnlyFor(int LenOf,bool bUseUpper,bool bUseNumber) {
string strTmp = sCharLow;
if (bUseUpper) strTmp += sCharUpp;
if (bUseNumber) strTmp += sNumber;
return BuildRndCodeOnly(strTmp,LenOf);
}
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752019/viewspace-959167/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【轉】python生成隨機字串Python隨機字串
- 【C#】比較 Random 與 RandomNumberGenerator 生成隨機字串C#random隨機字串
- (轉)Oracle的隨機數、隨機日期和時間、隨機字串及造資料匿名過程Oracle隨機字串
- php隨機字串PHP隨機字串
- [Z]Oracle 的隨機數、隨機日期和時間、隨機字串Oracle隨機字串
- python生成隨機數、隨機字串Python隨機字串
- 關於c#使用Npoi庫的一些隨筆C#
- 關於golang隨機種子的注意點Golang隨機
- 關於matlab生成隨機數Matlab隨機
- python 隨機字串Python隨機字串
- MVC把隨機產生的字串轉換為圖片MVC隨機字串
- 關於字串的幾個有用函式 (轉)字串函式
- Linux Shell 生成隨機數和隨機字串Linux隨機字串
- Python隨機數與隨機字串詳解Python隨機字串
- 生成隨機字串並排序隨機字串排序
- 隨機字串生成與排序隨機字串排序
- C# 隨機數 Random 的使用C#隨機random
- 高效產生不重複的隨機數隨機
- 一道關於隨機數生成的題目隨機
- QT生成固定長度的隨機字串QT隨機字串
- Sql C# 字串發轉SQLC#字串
- 從oracle表中隨機取記錄,產生隨機數和隨機字串Oracle隨機字串
- javascript隨機生成字串,可以用來生成隨機密碼JavaScript隨機字串密碼
- 生成固定長度不重複的隨機字串隨機字串
- 關於 js 物件 轉 字串 和 深拷貝 的 探討JS物件字串
- 關於XML字串和XML Document之間的轉換薦XML字串
- python 隨機生成字串資料Python隨機字串
- 關於字串的好文章字串
- delphi中關於字串的操作字串
- 高效產生一組不重複的隨機數隨機
- C#隨機產生漢字C#隨機
- Java學習關於隨機數工具類--Random類Java隨機random
- JavaScript隨機不重複的字元組成新的字串JavaScript隨機字元字串
- 關於Linux下的主機名(轉)Linux
- Python 實現隨機打亂字串Python隨機字串
- 隨機概率相關的面試題隨機面試題
- 關於動態字串的繫結字串
- 隨機指數(轉載)隨機