Click here to Skip to main content
Click here to Skip to main content

Encrypt and Decrypt a String

By , 29 Dec 2008
 
Sample Image - Encrypt_an_string1.gif

Introduction

If you write a secure program, you should secure something such as a password, private key and something else…
For this propose, this article can help you to encrypt a string and decrypt a string by using some method.

Background

This article explains 4 method to encrypt a string in .NET 2.0. There are 4 popular methods to encrypt a string:

  1. DES
  2. RC2
  3. Rijindeal
  4. Triple DES

Note: For all of these methods, we have some required parameters:

  • Specify a method
  • Use a Private Key

What is a Private Key?

Private Key is a string with specific Length.
For DES method, the length of Private key string must be 8 characters.
For RC2 method, the length of Private key string must be Minimum 7 characters.

What is Initialization Vector?

The purpose of the Initialization vector is to prevent dictionary attacks. For example, without an initialization vector, "password" will always encrypt to the same thing, which makes a dictionary attack easier. If something unique for each entry (such as row ID) is used as an initialization vector, an attacker would have to apply a dictionary attack to each row individually, as opposed to the entire DB. ( Thanks for Wk633...)

Using the Code

For implementing encrypt a string, we have 2 classes:

  • EncryptEngine
  • Encryptor

Class diagram of program

//
// EncryptEngine: // Core of Encryption class 
Public class EncryptEngine 
{ 
    EncrypltionAlgortim AlgorithmID; 
    Vector Keyword 
    Public EncryptEngine()
     { 
        // Constructor … Initializing Parameters 
     } 
    
    Public GetCryptTransformer() 
    { 
        // Return ICryptTransformer by Specified algoritm 
    } 
} 
Public class Encryptor 
{ 
    EncryptEngine _engine; 
    String _privateKey=””; 
    Byte [] IV; 
    // Initialization Vector ==> Needs for decrypt 
    Public Encryptor(ALgoritmID,PrivateKey) 
    { 
        // <CODE>Initializing Encrypt Engine by setting Method and PrivateKey 
    }
     Public string Encrypt(string SourceString) 
    { 
        // // … translation 
        // Return EncryptedString; 
    } }//

Executing Program

After Encryption excuted

When you set Method of Encryption and set Private Key, Press on Encrypt Button.

The program generates 2 parameters:

  1. Initialization Vector
  2. The Result ( encrypted string )

    After Encryption excuted

For decrypting a string, we need 2 parameters.
The program uses an Initialization Vector and result to decrypt a string.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Amir Mehrabi-Jorshari
Software Developer (Senior) Omid Farda IT Company
Iran (Islamic Republic Of) Iran (Islamic Republic Of)
Member
Master of Science in Computer Engineering

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberfatemeRokni10 May '13 - 8:10 
GeneralMy vote of 5membermanoj kumar choubey29 Mar '12 - 20:16 
QuestionHow to handle strings over more than one linemembergeorgebaker14 Mar '12 - 12:46 
NewsIf you want to encrypt a whole filesystemmemberjp7317 Nov '07 - 17:59 
NewsTwo other related encryption articles in CodeProject ...memberTony Selke27 Sep '07 - 6:52 
Generalerrormemberzhaojicheng9 Apr '07 - 21:33 
GeneralRe: errormemberAmir Mehrabi J.9 Apr '07 - 21:56 
GeneralRandomnessmemberJeffrey Walton5 Jan '07 - 3:09 
GeneralA FullFledged OnememberVasudevan Deepak Kumar4 Jan '07 - 19:51 
GeneralEnglishmemberAmir Mehrabi J.4 Jan '07 - 17:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 30 Dec 2008
Article Copyright 2006 by Amir Mehrabi-Jorshari
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid