上传者: yang651280121
|
上传时间: 2019-12-21 22:08:21
|
文件大小: 1KB
|
文件类型: cs
MD5加密和取得时间戳
public static string MD5(string input)
{
MD5 md5 = MD5CryptoServiceProvider.Create();
byte[] temp = md5.ComputeHash(Encoding.ASCII.GetBytes(input));
string byte2String = null;