字符串MD5加密和产生一个随机密码的方法
using System;
using System.Collections;
namespace Moxell.Library
{
?public class Crypto
?{
??public Crypto()
??{
??}
? //MD5加密
??public static string ToMD5Hash(string inputString)
??{
???System.Text.UnicodeEncoding sysEncode=new System.Text.UnicodeEncoding();
???Byte[] ByteToHash = sysEncode.GetBytes(inputString);
???Byte[] HashValue =? ((System.Security.Cryptography.HashAlgorithm) System.Security.Cryptography.CryptoConfig.CreateFromName??? ("MD5")).ComputeHash(ByteToHash);
???return System.BitConverter.ToString(HashValue);?
??}
????//產(chǎn)生隨機密碼
??public static string GetRadomPassword(int Length)
??{
???System.Text.StringBuilder Password = new System.Text.StringBuilder();
???Random RandomMach = new Random(DateTime.Now.Millisecond);
???//得到一個Length位的隨機密碼
???for(int i=0; i<Length; i++)
???{
????int RandomChar = RandomMach.Next(25)+97;?? //ASCII(a)=97,得到一個小寫字母串作為密碼
????Password.Append((char)RandomChar);
???}
???return Password.ToString();
??}
?}
}
轉(zhuǎn)載于:https://www.cnblogs.com/liuwm5000/archive/2008/03/03/1088883.html
總結(jié)
以上是生活随笔為你收集整理的字符串MD5加密和产生一个随机密码的方法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: DBGrid 应用全书(一)
- 下一篇: 实现IHttpModule接口获取Ses