• C#中用到的加密和解密函数


     添加

    using System.Security.Cryptography;
    using System.Text;
    using System.IO;

    //加密函数

    public static string Encode(string str, string key)
        {
            DESCryptoServiceProvider provider = new DESCryptoServiceProvider();
            provider.Key = Encoding.ASCII.GetBytes(key.Substring(0,8));
            provider.IV = Encoding.ASCII.GetBytes(key.Substring(0,8));
            byte[] bytes = Encoding.GetEncoding("GB2312").GetBytes(str);
            MemoryStream stream = new MemoryStream();
            CryptoStream stream2 = new CryptoStream(stream, provider.CreateEncryptor(), CryptoStreamMode.Write);
            stream2.Write(bytes, 0, bytes.Length);
            stream2.FlushFinalBlock();
            StringBuilder builder = new StringBuilder();
            foreach (byte num in stream.ToArray())
            {
                builder.AppendFormat("{0:X2}", num);
               
            }
            stream.Close();
            return builder.ToString();
        }

    //解密函数

    public static string Decode(string str, string key)
        {
            DESCryptoServiceProvider provider = new DESCryptoServiceProvider();
            provider.Key = Encoding.ASCII.GetBytes(key.Substring(0,8));
            provider.IV = Encoding.ASCII.GetBytes(key.Substring(0,8));
            byte[] buffer = new byte[str.Length / 2];
            for (int i = 0; i < (str.Length / 2); i++)
            {
                int num2 = Convert.ToInt32(str.Substring(i * 2, 2), 0x10);
                buffer[i] = (byte)num2;
            }
            MemoryStream stream = new MemoryStream();
            CryptoStream stream2 = new CryptoStream(stream, provider.CreateDecryptor(), CryptoStreamMode.Write);
            stream2.Write(buffer, 0, buffer.Length);
            stream2.FlushFinalBlock();
            stream.Close();
            return Encoding.GetEncoding("GB2312").GetString(stream.ToArray());
        }

  • 相关阅读:
    struts 多文件上传 xml 版本
    struts 多文件上传 annotation注解(零配置)+ ajaxfileupload + 异步 版本
    struts 文件下载 annotation 注解版
    servlet 通过 FileItem 实现多文件上传
    servlet 文件下载
    MySQL抑制binlog日志中的BINLOG部分的方法
    基于PHP的一种Cache回调与自动触发技术
    php面向对象的简单总结 $this $parent self
    nodeJs基础方法
    JavaScript 中的多线程通信的方法
  • 原文地址:https://www.cnblogs.com/ypyhy/p/2877074.html
Copyright © 2020-2023  润新知