博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
获取字符串的md5值
阅读量:6243 次
发布时间:2019-06-22

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

/** * author:Anby * use:Get md5  * time:2013-4-26 */using System;using System.Collections.Generic;using System.Linq;using System.Security.Cryptography;using System.Text;namespace BLL{     public static class MD5Helper    {        public static string getMd5(string message)        {            MD5 md5 = MD5.Create();            byte[] buffter = System.Text.Encoding.UTF8.GetBytes(message);            byte[] md5Buf = md5.ComputeHash(buffter);            StringBuilder sb = new StringBuilder();            for (int i = 0; i < md5Buf.Length; i++)            {                sb.Append(md5Buf[i].ToString("x2"));            }            return sb.ToString();        }    }}

  

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

你可能感兴趣的文章
Python按行读取文件
查看>>
Linux Shell从一个文件去掉包含在另一个文件的内容
查看>>
Linux CentOS6.5下编译安装MySQL 5.6.16
查看>>
CentOS 7 上systemctl 的用法
查看>>
极验验证的滑动验证码破解
查看>>
【深入Linux块设备驱动层次之一】整体层次
查看>>
Linux登录安全及用户操作审计 ,linux下清理日志脚本
查看>>
一个JS文件中引入另一个JS文件
查看>>
Laravel中pluck的使用——返回指定的字段值信息列表
查看>>
TCP Segment Offload(TSO)的实现原理浅析
查看>>
Android官方开发文档Training系列课程中文版:多样屏幕之支持不同的屏幕尺寸
查看>>
Redmine部署
查看>>
五种开源协议比较:BSD,Apache,GPL,LGPL,MIT
查看>>
Linux上编译hadoop-2.7.1的libhdfs.so和libhdfs.a
查看>>
mysql中函数greatest 与MAX区别
查看>>
ORA-01843: 无效的月份
查看>>
Centos网络管理(三)-网络配置相关
查看>>
php-fpm的pool、php-fpm慢执行日志、open_basedir、php-fpm进程管理
查看>>
编写iptables模块实现不连续IP地址的DNAT-POOL
查看>>
IOS真机测试
查看>>