zoukankan      html  css  js  c++  java
  • MD5加(解)密代码实现

    public static string Md5Encrypt(string strSource)
            {
                //把字符串放到byte数组中  
                byte[] bytIn = System.Text.Encoding.Default.GetBytes(strSource);
                //建立加密对象的密钥和偏移量          
                byte[] iv = { 102, 16, 93, 156, 78, 4, 218, 32 };//定义偏移量  
                byte[] key = { 55, 103, 246, 79, 36, 99, 167, 3 };//定义密钥  
                //实例DES加密类  
                DESCryptoServiceProvider mobjCryptoService = new DESCryptoServiceProvider();
                mobjCryptoService.Key = iv;
                mobjCryptoService.IV = key;
                ICryptoTransform encrypto = mobjCryptoService.CreateEncryptor();
                //实例MemoryStream流加密密文件  
                System.IO.MemoryStream ms = new System.IO.MemoryStream();
                CryptoStream cs = new CryptoStream(ms, encrypto, CryptoStreamMode.Write);
                cs.Write(bytIn, 0, bytIn.Length);
                cs.FlushFinalBlock();
    
                string strOut = System.Convert.ToBase64String(ms.ToArray());
                return strOut;
            }
    
            public static string Md5Decrypt(string Source)
            {
                //将解密字符串转换成字节数组  
                byte[] bytIn = System.Convert.FromBase64String(Source);
                //给出解密的密钥和偏移量,密钥和偏移量必须与加密时的密钥和偏移量相同  
                byte[] iv = { 102, 16, 93, 156, 78, 4, 218, 32 };//定义偏移量  
                byte[] key = { 55, 103, 246, 79, 36, 99, 167, 3 };//定义密钥  
                DESCryptoServiceProvider mobjCryptoService = new DESCryptoServiceProvider();
                mobjCryptoService.Key = iv;
                mobjCryptoService.IV = key;
                //实例流进行解密  
                System.IO.MemoryStream ms = new System.IO.MemoryStream(bytIn, 0, bytIn.Length);
                ICryptoTransform encrypto = mobjCryptoService.CreateDecryptor();
                CryptoStream cs = new CryptoStream(ms, encrypto, CryptoStreamMode.Read);
                StreamReader strd = new StreamReader(cs, Encoding.Default);
                return strd.ReadToEnd();
            }

    控制台测试:

    string sec = "ID=sa;Password=123456;";
                string md5 = Md5Encrypt(sec);
                string final = Md5Decrypt(md5);
                Console.WriteLine("加密前:" + sec + ",加密后:" + md5 + ",解密后:" + final);
                Console.ReadLine();

    输出如下:

    记录编程的点滴,体会学习的乐趣
  • 相关阅读:
    【Android平台安全方案】の #00-请不要在外部存储(SD卡)加密存储的敏感信息
    本学习笔记TCP/IP传输协议
    iOS_23_undress Girl
    uva 1560
    IOS开发-Swift新语言初见
    39个让你受益的HTML5教程
    ubuntu12.04管理员账户登录不了桌面,仅仅能客人会话登录
    怎样使用SetTimer MFC 够具体
    ArcGIS API for Silverlight 编辑Geometry
    几种更新(Update语句)查询的方法
  • 原文地址:https://www.cnblogs.com/AduBlog/p/13557873.html
Copyright © 2011-2022 走看看