摘要: using System;using System.Security.Cryptography;using System.Text;class Example{ // Hash an input string and return the hash as // a 32 character hexadecimal string. static string getMd5Hash(string input) { // Create a new instance of the MD5CryptoServiceProvider object. MD... 阅读全文
posted @ 2013-12-02 10:30 KeithMorning 阅读(3442) 评论(0) 推荐(0) 编辑