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

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

using System;using System.Text;using System.Windows.Forms;using System.Security.Cryptography;using System.Web.Security;using System.Web;namespace WindowsFormsApplication1{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        public static string MD5(string password)        {            MD5CryptoServiceProvider md5;            md5 = new MD5CryptoServiceProvider();            return BitConverter.ToString(md5.ComputeHash(Encoding.Default.GetBytes(password)));        }        private void button1_Click(object sender, EventArgs e)        {            string t1 = textBox1.Text;            string tm = FormsAuthentication.HashPasswordForStoringInConfigFile(t1, "MD5");            textBox2.Text = tm;            textBox3.Text = MD5(t1).Replace("-","");        }    }}

转载于:https://www.cnblogs.com/mjsn/p/6150910.html

你可能感兴趣的文章
在Linux上部署Nginx,反向代理tornado的WebSite
查看>>
Windows 全绿色安装Mysql
查看>>
Nginx开启访问日志记录
查看>>
Python做域用户验证登录
查看>>
Linux上安装Mysql
查看>>
Selenium chromeDriver 下载地址
查看>>
JMeter入门
查看>>
深入认识二进制序列化--记一次生产事故的思考
查看>>
算法准备-分治算法解决众数求解问题
查看>>
linux 命令
查看>>
抖动文字
查看>>
【实践练习一】Git以及Github的使用
查看>>
CodeForces 163A Substring and Subsequence
查看>>
Leetcode - Unique Binary Search Trees
查看>>
2018.2.09 php学习(二)
查看>>
安装elasticsearch
查看>>
黑马程序员——对线程的一些总结
查看>>
别告诉我你懂PPT 让你的PPT会说话
查看>>
使用 JavaScript 实现名为 flatten(input) 的函数,可以将传入的 input 对象(Object 或者 Array)进行扁平化处理并返回结果...
查看>>
Java核心技术--内部类
查看>>