码迷,mamicode.com
首页 > 其他好文 > 详细

GUID与MD5加密

时间:2015-06-01 11:37:22      阅读:605      评论:0      收藏:0      [点我收藏+]

标签:guid   加密   md5   tostring格式   

GUID可以生成一个不太容易重复的ID号;
MD5加密可以保护你的密码,加密过程认为是不可逆,把MD5码放在服务器数据库中,即使服务器被攻破,密码也不能被盗取。
第二个程序使用了ToString的格式化.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _32_GUID
{
    class Program
    {
        static void Main(string[] args)
        {
            //GUID is a static class ,it can help us to generate a distinguished ID;
            //we can use it as an product ID;
            Console.WriteLine(Guid.NewGuid().ToString());
            Console.ReadKey();
        }
    }
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;

namespace MD5加密
{
    /// <summary>
    /// MD5加密是不可逆的过程;
    /// </summary>
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("请输入要加密内容");
            string input = Console.ReadLine();
            Console.WriteLine("加密后的结果为:" + GetMD5(input));
            //x可以将十进制转换为16禁止;x2并不略去其中少的0;
            //Console.WriteLine("{0:X2}", 64);
            Console.ReadKey();
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="str"></param>
        /// <returns></returns>
        public static string GetMD5(string str)
        {
            //创建MD5对象;
            MD5 md5 = MD5.Create();
            //开始加密;
            //需要将字符串转换为字节数组,二进制的;
            byte[] buffer = Encoding.UTF8.GetBytes(str);

            byte[] MD5buffer = md5.ComputeHash(buffer);
            //将字节数组中每个元素按照编码格式解析成字符串;
            //string str2 = Encoding.UTF8.GetString(MD5buffer);
            //直接将数组ToString();
            //将字节数组中的每个元素ToString();  
            StringBuilder result=new StringBuilder();
            for (int i = 0; i < MD5buffer.Length; i++)
            {
                result.Append(MD5buffer[i].ToString("x2"));
            }

            return result.ToString();

        }
    }
}

GUID与MD5加密

标签:guid   加密   md5   tostring格式   

原文地址:http://blog.csdn.net/zhzz2012/article/details/46300845

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!