要求:
密码必须包含数字和字母
思路:
1.列出数字和字符。 组成字符串 :chars
2.利用randrom.next(int i)返回一个小于所指定最大值的非负随机数。
3. 随机取不小于chars长度的随机数a,取字符串chars的第a位字符。
4.循环 8次,得到8位密码
5.循环n次,批量得到密码。
代码实现如下 main函数:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
static void main( string [] args)
{
string chars = "0123456789abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz" ;
random randrom = new random(( int )datetime.now.ticks);
string path1 = @"c:\users\lenovo\desktop\pws.txt" ;
for ( int j = 0; j < 10000;j++ )
{
string str = "" ;
for ( int i = 0; i < 8; i++)
{
str += chars[randrom.next(chars.length)]; //randrom.next(int i)返回一个小于所指定最大值的非负随机数
}
if (isnumber(str)) //判断是否全是数字
continue ;
if (isletter(str)) //判断是否全是字母
continue ;
file.appendalltext(path1, str);
string pws = md5(str,32); //md5加密
file.appendalltext(path1, "," + pws + "\r\n" );
}
console.writeline( "ok" );
console.read();
}
|
巧用string.trim 函数,判断是否全是数字,全是字母。
说明:string.trim 从 string 对象移除前导空白字符和尾随空白字符。
返回:一个字符串副本,其中从该字符串的开头和末尾移除了所有空白字符。
有一个重载:string.trim(params char[] trimchars)
//从当前system.string对象移除数组中指定的一组字符的所有前导匹配项和尾部匹配项
trimchars:要删除的字符数组
方法实现如下代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//判断是否全是数字
static bool isnumber( string str)
{
if (str.trim( "0123456789" .tochararray()) == "" )
return true ;
return false ;
}
//判断是否全是字母
static bool isletter( string str)
{
if (str.trim( "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz" .tochararray()) == "" )
return true ;
return false ;
}
|
用md5加密,算法代码实现如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/// <summary>
/// md5加密
/// </summary>
/// <param name="str">加密字元</param>
/// <param name="code">加密位数16/32</param>
/// <returns></returns>
public static string md5( string str, int code)
{
string strencrypt = string .empty;
md5 md5 = new md5cryptoserviceprovider();
byte [] fromdata = encoding.getencoding( "gb2312" ).getbytes(str);
byte [] targetdata = md5.computehash(fromdata);
for ( int i = 0; i < targetdata.length; i++)
{
strencrypt += targetdata[i].tostring( "x2" );
}
if (code == 16)
{
strencrypt = strencrypt.substring(8, 16);
}
return strencrypt;
}
|
生成批量密码,和加密后的密码如下图:
以上所述是小编给大家介绍的c# 批量生成随机密码必须包含数字和字母并用加密算法加密,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:http://www.cnblogs.com/SweetMemory/archive/2017/01/18/6297138.html