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

推荐订阅源

人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
月光博客
月光博客
T
Tailwind CSS Blog
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
罗磊的独立博客
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
量子位
雷峰网
雷峰网
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
博客园 - 聂微东
V
V2EX

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