我是靠谱客的博主 复杂红牛,最近开发中收集的这篇文章主要介绍使用MD5加密,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

类库需要使用md5加密方法

//需要的命名空间

 

using System.Security.Cryptography;

 

 public string Encryption(string pwd)
        {
            MD5 md5 = MD5.Create();

            StringBuilder builder = new StringBuilder();

            byte[] md5Bytes = md5.ComputeHash(Encoding.UTF8.GetBytes(pwd));

            for (int i = 0; i < md5Bytes.Length; i++)
            {
                builder.AppendFormat("{0:X2}", md5Bytes[i]);
            }

            return builder.ToString();
        }

----------------------------------------------------------------------------------------------------------

web Form 使用md5 加密方法

//需要的命名空间

using System.Web.Security;

 public string Encryption(string pwd)
        {

           System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(pwd, "MD5").ToUpper();

        }

最后

以上就是复杂红牛为你收集整理的使用MD5加密的全部内容,希望文章能够帮你解决使用MD5加密所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(33)

评论列表共有 0 条评论

立即
投稿
返回
顶部