• 大小: 0.86KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 加密  C#  DES  

资源简介

直接使用即可.

加密 DESSEC.Encrypt("XXX");

解密 DESSEC.Decrypt("XXX");

资源截图

代码片段和文件信息

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

namespace DES
{
    /// 
    /// DESEncrypt加密解密算法。
    /// 

    public sealed class DESEncrypt
    {
        private DESEncrypt()
        {
            //
            // TODO: 在此处添加构造函数逻辑
            //
        }

        private static string key = “dksodkef“;
        private static string iv = “JD215478“;

        /// 
        /// 对称加密解密的密钥
        /// 

        public static string Key
        {
            get
            {
                return key;
            }
            set
            {
                key = value;
            }
        }

        /// 
        /// DES加密
        /// 

        /// 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       3256  2017-07-04 17:34  DES.cs

----------- ---------  ---------- -----  ----

                 3256                    1


评论

共有 条评论