惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
V
V2EX
L
LangChain Blog
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
T
The Blog of Author Tim Ferriss
Recorded Future
Recorded Future
月光博客
月光博客
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
美团技术团队
博客园 - 【当耐特】
The Cloudflare Blog
罗磊的独立博客
GbyAI
GbyAI
A
About on SuperTechFans
腾讯CDC
宝玉的分享
宝玉的分享
I
InfoQ
V
Visual Studio Blog
Forbes - Security
Forbes - Security
P
Proofpoint News Feed
T
Troy Hunt's Blog
NISL@THU
NISL@THU
Webroot Blog
Webroot Blog
T
Threatpost
博客园 - 三生石上(FineUI控件)
S
Securelist
H
Help Net Security
小众软件
小众软件
L
Lohrmann on Cybersecurity
Cyberwarzone
Cyberwarzone
T
The Exploit Database - CXSecurity.com
量子位
博客园_首页
Scott Helme
Scott Helme
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
J
Java Code Geeks
G
GRAHAM CLULEY
T
Tor Project blog
The GitHub Blog
The GitHub Blog
Cloudbric
Cloudbric
IT之家
IT之家
阮一峰的网络日志
阮一峰的网络日志
Hacker News - Newest:
Hacker News - Newest: "LLM"
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Schneier on Security
Schneier on Security
V
Vulnerabilities – Threatpost
Jina AI
Jina AI

博客园 - 许明会

异步编程,采用WorkgroupWorker,async和await关键字 OCR图像识别技术-Asprise OCR 关于委托,事件和类的设计准则 JavaScript能干什么? C#泛型代理、泛型接口、泛型类型、泛型方法 Delegate, Method as Parameter. 利用委托实现异步调用 通过Windows组策略限制证书组织流氓软件的安装运行 枚举\位域\结构综合实验 - 许明会 - 博客园 public static void Invoke (Action action) C#编写WIN32系统托盘程序 C#的互操作性:缓冲区、结构、指针 SQLServer异步调用,批量复制 Python体验(10)-图形界面之计算器 Python体验(09)-图形界面之Pannel和Sizer Python体验(08)-图形界面之工具栏和状态栏 Python体验(07)-图形界面之菜单 C#利用WIN32实现按键注册 Javascript猜数字游戏
DES对称性加密
许明会 · 2016-04-02 · via 博客园 - 许明会
using System;
using System.Security.Principal;
using System.Security.Permissions;
using System.Security.Cryptography;

namespace Demo
{
    class MainClass
    {
        /// <summary>
        /// DESCryptoServiceProvider
        /// </summary>
        public static void DESCryptoDemo ()
        {
            string message = "This message is security!";
            string strEncryp, strDecryp;

            DESCryptoServiceProvider des = new DESCryptoServiceProvider ();
            System.Text.Encoding encoding = new System.Text.UTF8Encoding ();

            byte[] key = encoding.GetBytes ("1a345689");
            byte[] iv = { 0, 91, 2, 3, 4, 5, 6, 7 };
            ICryptoTransform encryptor = des.CreateEncryptor (key, iv);
            ICryptoTransform decryptor = des.CreateDecryptor (key, iv);
            //all above 4 lines can be TiHuan as below
            des.GenerateKey ();
            des.GenerateIV ();
            encryptor = des.CreateEncryptor ();
            decryptor = des.CreateDecryptor ();
            {
                byte[] byteMessage = encoding.GetBytes (message);
                byte[] byteEncrypto = encryptor.TransformFinalBlock (byteMessage, 0, byteMessage.Length);
                strEncryp = Convert.ToBase64String (byteEncrypto);
            }
            {
                byte[] byteEncryto2 = Convert.FromBase64String (strEncryp);
                byte[] byteDecrypto = decryptor.TransformFinalBlock (byteEncryto2, 0, byteEncryto2.Length);
                strDecryp = encoding.GetString (byteDecrypto);
            }
            Console.WriteLine ("Message:" + message);
            Console.WriteLine ("Encrypted:" + strEncryp);
            Console.WriteLine ("Decrypted:" + strDecryp);
            Console.ReadKey ();
        }

        public static void Invoke (Action action)
        {
            try {
                action ();
            } catch (Exception ex) {
                Console.WriteLine (ex.Message);
            }
        }

        public static void Main (string[] args)
        {
            DESCryptoDemo ();
            Invoke (() => TestMethod1 ());
            Invoke (() => TestMethod2 ());
            Invoke (() => TestMethod3 ());
            Console.ReadKey ();
        }

        [PrincipalPermission (SecurityAction.Demand, Name = "Administrator")]
        public static void TestMethod1 ()
        {
            Console.WriteLine ("TestMethod1 successfully Executed!");
        }

        [PrincipalPermission (SecurityAction.Demand, Role = "Administrators")]
        public static void TestMethod2 ()
        {
            Console.WriteLine ("TestMethod2 successfully Executed!");
        }

        [PrincipalPermission (SecurityAction.Demand, Role = "Guests")]
        public static void TestMethod3 ()
        {
            Console.WriteLine ("TestMethod3 successfully Executed!");
        }
    }
}