zoukankan      html  css  js  c++  java
  • C#字符串加密解密

    /// <summary>
    /// 加密字符串
    /// 注意:密钥必须为8位
    /// </summary>
    /// <param name="strText">字符串</param>
    /// <param name="encryptKey">密钥</param>
    /// <param name="encryptKey">返回加密后的字符串</param>
    public string DesEncrypt(string inputString, string encryptKey)
    {
    byte[] byKey = null;
    byte[] IV = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF };
    try
    {
    byKey = System.Text.Encoding.UTF8.GetBytes(encryptKey.Substring(0, 8));
    DESCryptoServiceProvider des = new DESCryptoServiceProvider();
    byte[] inputByteArray = Encoding.UTF8.GetBytes(inputString);
    MemoryStream ms = new MemoryStream();
    CryptoStream cs = new CryptoStream(ms, des.CreateEncryptor(byKey, IV), CryptoStreamMode.Write);
    cs.Write(inputByteArray, 0, inputByteArray.Length);
    cs.FlushFinalBlock();
    return Convert.ToBase64String(ms.ToArray());
    }
    catch (System.Exception error)
    {
    //return error.Message;
    return null;
    }
    }
    /// <summary>
    /// 解密字符串
    /// </summary>
    /// <param name="this.inputString">加了密的字符串</param>
    /// <param name="decryptKey">密钥</param>
    /// <param name="decryptKey">返回解密后的字符串</param>
    public string DesDecrypt(string inputString, string decryptKey)
    {
    byte[] byKey = null;
    byte[] IV = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF };
    byte[] inputByteArray = new Byte[inputString.Length];
    try
    {
    byKey = System.Text.Encoding.UTF8.GetBytes(decryptKey.Substring(0, 8));
    DESCryptoServiceProvider des = new DESCryptoServiceProvider();
    inputByteArray = Convert.FromBase64String(inputString);
    MemoryStream ms = new MemoryStream();
    CryptoStream cs = new CryptoStream(ms, des.CreateDecryptor(byKey, IV), CryptoStreamMode.Write);
    cs.Write(inputByteArray, 0, inputByteArray.Length);
    cs.FlushFinalBlock();
    System.Text.Encoding encoding = new System.Text.UTF8Encoding();
    return encoding.GetString(ms.ToArray());
    }
    catch (System.Exception error)
    {
    //return error.Message;
    return null;
    }
    }

  • 相关阅读:
    centos 7 安装nvidia显卡驱动
    Ubuntu 16.04LTS 安装 MATLAB 2014B
    Linux 查看CPU温度
    pip: unsupported locale setting
    ubuntu 卸载从源码安装的 emacs
    html css使用特殊自定义字体避免侵权
    JS操作iframe父级子级元素,jquery自动点击iframe里按钮
    Iframe标签显示目标网页的指定区域,视频可全屏可缩小
    禁止所有搜索爬虫访问网站指定目录robots.txt
    ThinkPHP5.0、5.1和6.0教程文档合集(免费下载)
  • 原文地址:https://www.cnblogs.com/lihaishu/p/4449406.html
Copyright © 2011-2022 走看看