Use C # To implement Des encryption and decryption

Source: Internet
Author: User

Using System;
Using System. IO;
Using System. Security. Cryptography;
Namespace Vavic
{
/// <Summary>
/// Security summary.
/// </Summary>
Public class Security
{
Const string KEY_64 = "VavicApp ";
Const string IV_64 = "VavicApp"; // note that it is 8 characters long and 64-bit
Public Security ()
{
//
// TODO: add the constructor logic here
//
}
Public static string Encode (string data)
{
Byte [] byKey = System. Text. ASCIIEncoding. ASCII. GetBytes (KEY_64 );
Byte [] byIV = System. Text. ASCIIEncoding. ASCII. GetBytes (IV_64 );
DESCryptoServiceProvider cryptoProvider = new DESCryptoServiceProvider ();
Int I = cryptoProvider. KeySize;
MemoryStream MS = new MemoryStream ();
CryptoStream cst = new CryptoStream (MS, cryptoProvider. CreateEncryptor (byKey, byIV), CryptoStreamMode. Write );

StreamWriter sw = new StreamWriter (cst );
Sw. Write (data );
Sw. Flush ();
Cst. FlushFinalBlock ();
Sw. Flush ();
Return Convert. ToBase64String (ms. GetBuffer (), 0, (int) ms. Length );

}
Public static string Decode (string data)
{
Byte [] byKey = System. Text. ASCIIEncoding. ASCII. GetBytes (KEY_64 );
Byte [] byIV = System. Text. ASCIIEncoding. ASCII. GetBytes (IV_64 );
Byte [] byEnc;
Try
{
ByEnc = Convert. FromBase64String (data );
}
Catch
{
Return null;
}
DESCryptoServiceProvider cryptoProvider = new DESCryptoServiceProvider ();
MemoryStream MS = new MemoryStream (byEnc );
CryptoStream cst = new CryptoStream (MS, cryptoProvider. CreateDecryptor (byKey, byIV), CryptoStreamMode. Read );
StreamReader sr = new StreamReader (cst );
Return sr. ReadToEnd ();
}
}
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.