• DESCryptoServiceProvider加密、解密


    .net名称空间System.Security.Cryptography下DESCryptoServiceProvider类为我们提供了加密和解密方法,我们只需少许代码便可实现加密和解密。

    稍感不托的地方,如果不是自行加密的在解密时会报错。

    使用注意事项,密钥64位,8个字符。

    定义默认加密密钥

    const string KEY_64 = "ChinabCd";
    const string IV_64 = "ChinabCd";

    加密

    /// <summary>
    /// 按指定键值进行加密
    /// </summary>
    /// <param name="strContent">要加密字符</param>
    /// <param name="strKey">自定义键值</param>
    /// <returns></returns>
    
    public static string EnCrypt(string strContent, string strKey)
    
            {
                if (string.IsNullOrEmpty(strContent)) return string.Empty;
                if (strKey.Length > 8) strKey = strKey.Substring(0, 8); else strKey = KEY_64;
                byte[] byKey = System.Text.ASCIIEncoding.ASCII.GetBytes(strKey);
                byte[] byIV = System.Text.ASCIIEncoding.ASCII.GetBytes(IV_64);
    
                DESCryptoServiceProvider cryptoProvider = new DESCryptoServiceProvider();
                int i = cryptoProvider.KeySize;
                MemoryStream ms = new MemoryStream();
                CryptoStream cst = new CryptoStream(ms, cryptoProvider.CreateEncryptor(byKey, byIV), CryptoStreamMode.Write);
    
                StreamWriter sw = new StreamWriter(cst);
                sw.Write(strContent);
                sw.Flush();
                cst.FlushFinalBlock();
                sw.Flush();
                return Convert.ToBase64String(ms.GetBuffer(), 0, (int)ms.Length);
            }
    View Code

     解密

     /// <summary>
            /// 按指定键值进行解密
            /// </summary>
            /// <param name="strContent">要解密字符</param>
            /// <param name="strKey">加密时使用的键值</param>
            /// <returns></returns>
            public static string DeCrypt(string strContent, string strKey)
            {
                if (string.IsNullOrEmpty(strContent)) return string.Empty;
                if (strKey.Length > 8) strKey = strKey.Substring(0, 8); else strKey = KEY_64;
                byte[] byKey = System.Text.ASCIIEncoding.ASCII.GetBytes(strKey);
                byte[] byIV = System.Text.ASCIIEncoding.ASCII.GetBytes(IV_64);
    
                byte[] byEnc;
                try
                {
                    byEnc = Convert.FromBase64String(strContent);
                }
                catch
                {
                    return null;
                }
    
                DESCryptoServiceProvider cryptoProvider = new DESCryptoServiceProvider();
                MemoryStream ms = new MemoryStream(byEnc);
                CryptoStream cst = new CryptoStream(ms, cryptoProvider.CreateDecryptor(byKey, byIV), CryptoStreamMode.Read);
                StreamReader sr = new StreamReader(cst);
                return sr.ReadToEnd();
            }
    View Code
  • 相关阅读:
    Android标题栏最右边添加按钮
    Activity标题栏添加返回按钮
    【Android】解决Android横竖屏切换数据丢失问题的方法
    Android热更新,到底是更新啥?
    vm ware 虚拟WIN10 时,chrome ,cent browser 显示异常,花屏
    动态生成的 select option 无法选中,设置值
    安装sql 2012 时遇到“需要更新的以前的 Visual Studio 2010 实例。”规则失败。
    C#.NET 简单使用log4net
    10位,13位时间戳转为C#格式时间
    C# .NET Unix 时间戳
  • 原文地址:https://www.cnblogs.com/lucika/p/3480184.html
Copyright © 2020-2023  润新知