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

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

 

 

public string md5(string str, int code)    {        if (code == 16) //16位MD5加密(取32位加密的9~25字符)        {            return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str, "MD5").ToLower().Substring(8, 16);        }        if (code == 32) //32位加密        {            return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str, "MD5").ToLower();        }        return "00000000000000000000000000000000";    }

 

posted on
2014-02-14 11:14  阅读(
...) 评论(
...) 收藏

转载于:https://www.cnblogs.com/wuyifu/p/3549269.html

你可能感兴趣的文章
Process 2(完成版)
查看>>
12 总结
查看>>
2 [文件]-文件操作
查看>>
about
查看>>
dp核心问题研究-从入门到放弃
查看>>
找出谁删除了某个表
查看>>
SQL Server 诊断查询-(3)
查看>>
异步FIFO
查看>>
正则表达式2
查看>>
2.1.3 Sorting a Three-Valued Sequence
查看>>
类型转换 上转型对象
查看>>
子元素浮动,父级元素为0怎么解决
查看>>
MIUI2.3.7系统后有部分程序不能移动到SD卡中的解决
查看>>
常用快捷键
查看>>
Horovod 通信策略
查看>>
try...cath...finally中的return什么时候执行
查看>>
数据结构-堆排序
查看>>
2. FTP 服务器安装
查看>>
如果我再多一个优点
查看>>
OO第二单元总结
查看>>