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

推荐订阅源

B
Blog RSS Feed
Spread Privacy
Spread Privacy
T
Threatpost
C
Cisco Blogs
P
Palo Alto Networks Blog
AI
AI
Cyberwarzone
Cyberwarzone
NISL@THU
NISL@THU
P
Privacy & Cybersecurity Law Blog
G
GRAHAM CLULEY
Simon Willison's Weblog
Simon Willison's Weblog
T
Tor Project blog
Latest news
Latest news
AWS News Blog
AWS News Blog
D
Docker
S
SegmentFault 最新的问题
博客园 - 聂微东
WordPress大学
WordPress大学
Vercel News
Vercel News
S
Securelist
爱范儿
爱范儿
J
Java Code Geeks
Know Your Adversary
Know Your Adversary
S
Schneier on Security
Hugging Face - Blog
Hugging Face - Blog
F
Fortinet All Blogs
Last Week in AI
Last Week in AI
D
DataBreaches.Net
宝玉的分享
宝玉的分享
D
Darknet – Hacking Tools, Hacker News & Cyber Security
MongoDB | Blog
MongoDB | Blog
Engineering at Meta
Engineering at Meta
K
Kaspersky official blog
美团技术团队
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
量子位
博客园_首页
Attack and Defense Labs
Attack and Defense Labs
S
Secure Thoughts
Google Online Security Blog
Google Online Security Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
腾讯CDC
T
Threat Research - Cisco Blogs
雷峰网
雷峰网
有赞技术团队
有赞技术团队
www.infosecurity-magazine.com
www.infosecurity-magazine.com
P
Privacy International News Feed
S
Security Affairs

博客园 - Programming & Crack

征集"锐捷 私有MIB” 网络运维软件破解 DotNetBar 9.5 破解 DevExpress.10.2.6.Crack Actipro.WPF.Studio.v11.1.0541 破解 破解 更新 PPT转Word (源代码) 三茗闪电恢复 Mangofile.PersonalPlus5(x86) Crack 破解必备之:Win32跳转 SQLite.Expert.Professional.3.1.9 破解 Sqlite Developer 3.8 破解 Magic Locker v1.02 破解版 SQLPrompt 4.0 破解 FarPoint Spread for Windows Forms 5.0(.NET Framework 3.5). 注册机 破解必备之:MSIL指令集 TeeChart NET 2010 VS NET2008 版本 4.1.2010.08046 Sandribbon、sanddock、sandbar== Actipro WPF Studio破解
TripleDESCrypto 解密函数在这里了,加密函数该如何写呢? - Programming & Crack
Programming · 2010-08-30 · via 博客园 - Programming & Crack

解密函数在这里了,加密函数该如何写呢?

     public static string JeMi(string data)
        {
            if (data == null)
            {
                throw new ArgumentNullException("data");
            }
            try
            {
                string str;
                SymmetricAlgorithm algorithm = TDESP();
                byte[] buffer = Convert.FromBase64String(data);
                MemoryStream stream = new MemoryStream();
                CryptoStream stream2 = new CryptoStream(stream, algorithm.CreateDecryptor(), CryptoStreamMode.Write);
                try
                {
                    stream2.Write(buffer, 0, buffer.Length);
                    str = Encoding.UTF8.GetString(stream.ToArray());
                    int startIndex = str.IndexOf("\r\n", 0, str.Length);
                    str = str.Remove(startIndex, str.Length - startIndex);
                }
                finally
                {
                    stream2.Close();
                    stream.Close();
                }
                return str;
            }
            catch (Exception)
            {
                return null;
            }
        }

        private static TripleDESCryptoServiceProvider TDESP()
        {
            TripleDESCryptoServiceProvider provider = new TripleDESCryptoServiceProvider();
            provider.KeySize = 0xc0;
            provider.Key = new byte[] {
            0xae, 5, 0x39, 0x5d, 0x42, 0x98, 0x42, 0xa4, 0x4e, 0x29, 0x91, 0x70, 0x19, 0x6f, 0xe8, 0x4d,
            8, 0x74, 0xb9, 0xb0, 0x70, 0x7c, 0x69, 0x91
         };
            provider.IV = new byte[] { 0x1b, 0xf6, 0x95, 0xaf, 0x7d, 0xd6, 90, 0x4f };
            provider.Mode = CipherMode.CBC;
            provider.Padding = PaddingMode.Zeros;
            return provider;
        }

posted on 2010-08-30 00:22  Programming & Crack  阅读(827)  评论()    收藏  举报