码迷,mamicode.com
首页 > Web开发 > 详细

11 在.NET 中如何加密和解密一个字符串

时间:2014-06-24 20:35:56      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:des   class   blog   code   ext   2014   

        string plainText = "This is plain text that we will encrypt";
        string password = "P@$$w0rd";

        Console.WriteLine(plainText);
        Console.WriteLine();
            
        create a new instance of our encryption class passing in the password as the key
        DESEncrypt testEncrypt = new DESEncrypt();

        string encText = testEncrypt.EncryptString(plainText, password);
        Console.WriteLine("****** Encrypted text ******");
        Console.WriteLine(encText);
        Console.WriteLine();

        Console.WriteLine("****** Decrypted text ******");
        string plain = testEncrypt.DecryptString(encText, password);
        Console.WriteLine(plain);
        Console.WriteLine();



此处省去去多行。。。

11 在.NET 中如何加密和解密一个字符串,布布扣,bubuko.com

11 在.NET 中如何加密和解密一个字符串

标签:des   class   blog   code   ext   2014   

原文地址:http://blog.csdn.net/u011685627/article/details/33466413

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!