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

推荐订阅源

N
Netflix TechBlog - Medium
J
Java Code Geeks
爱范儿
爱范儿
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog RSS Feed
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
The GitHub Blog
The GitHub Blog
I
InfoQ
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research

博客园 - 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 · 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)  评论()    收藏  举报