博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MD5加密算法
阅读量:6139 次
发布时间:2019-06-21

本文共 1480 字,大约阅读时间需要 4 分钟。

public class CryptTool    {        // Hash an input string and return the hash as        // a 32 character hexadecimal string.        public static string getMd5Hash(string input)        {            // Create a new instance of the MD5CryptoServiceProvider object.            MD5 md5Hasher = MD5.Create();            // Convert the input string to a byte array and compute the hash.            byte[] data = md5Hasher.ComputeHash(Encoding.Default.GetBytes(input));            // Create a new Stringbuilder to collect the bytes            // and create a string.            StringBuilder sBuilder = new StringBuilder();            // Loop through each byte of the hashed data             // and format each one as a hexadecimal string.            for (int i = 0; i < data.Length; i++)            {                sBuilder.Append(data[i].ToString("x2"));            }            // Return the hexadecimal string.            return sBuilder.ToString();        }        // Verify a hash against a string.        public static bool verifyMd5Hash(string input, string hash)        {            // Hash the input.            string hashOfInput = getMd5Hash(input);            // Create a StringComparer an comare the hashes.            StringComparer comparer = StringComparer.OrdinalIgnoreCase;            if (0 == comparer.Compare(hashOfInput, hash))            {                return true;            }            else            {                return false;            }        }}

 

转载地址:http://dvkya.baihongyu.com/

你可能感兴趣的文章
20172303 2017-2018-2 《程序设计与数据结构》第5周学习总结
查看>>
eclipse中将一个项目作为library导入另一个项目中
查看>>
Go语言学习(五)----- 数组
查看>>
Android源码学习之观察者模式应用
查看>>
416. Partition Equal Subset Sum
查看>>
Django之FBV与CBV
查看>>
Vue之项目搭建
查看>>
app内部H5测试点总结
查看>>
[TC13761]Mutalisk
查看>>
Data Wrangling文摘:Non-tidy-data
查看>>
while()
查看>>
常用限制input的方法
查看>>
IIS7下使用urlrewriter.dll配置
查看>>
并行程序设计学习心得1——并行计算机存储
查看>>
JAVA入门到精通-第86讲-半双工/全双工
查看>>
bulk
查看>>
js document.activeElement 获得焦点的元素
查看>>
C++ 迭代器运算
查看>>
【支持iOS11】UITableView左滑删除自定义 - 实现多选项并使用自定义图片
查看>>
day6-if,while,for的快速掌握
查看>>