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

推荐订阅源

博客园 - Franky
N
Netflix TechBlog - Medium
Google Online Security Blog
Google Online Security Blog
月光博客
月光博客
量子位
酷 壳 – CoolShell
酷 壳 – CoolShell
V
V2EX
腾讯CDC
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
M
MIT News - Artificial intelligence
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
Apple Machine Learning Research
Apple Machine Learning Research
aimingoo的专栏
aimingoo的专栏
博客园 - 三生石上(FineUI控件)
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
The Cloudflare Blog
Blog — PlanetScale
Blog — PlanetScale
F
Full Disclosure
G
Google Developers Blog
罗磊的独立博客
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Y
Y Combinator Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
A
About on SuperTechFans
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
有赞技术团队
有赞技术团队
GbyAI
GbyAI
雷峰网
雷峰网
T
The Blog of Author Tim Ferriss
The Register - Security
The Register - Security
U
Unit 42
D
Docker
Martin Fowler
Martin Fowler
L
LINUX DO - 热门话题
NISL@THU
NISL@THU
阮一峰的网络日志
阮一峰的网络日志
C
Cybersecurity and Infrastructure Security Agency CISA
博客园_首页
Google DeepMind News
Google DeepMind News

博客园 - 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). 注册机 - Programming & Crack 破解必备之: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)  评论()    收藏  举报