Click here to Skip to main content
15,861,168 members
Articles / Programming Languages / C#
Alternative
Article

XCrypt - Encryption and decryption class wrapper

Rate me:
Please Sign up or sign in to vote.
4.86/5 (19 votes)
24 Jun 2013CPOL2 min read 55.7K   2K   77   10
This is an alternative for "XCrypt - Encryption and decryption class wrapper".
Introduction

This article is built on top of 'XCrypt' -- the legendary cryptography wrapper which had been around in CodeProject for a while. Unfortunately the original author of the article has left it unattended for several years. I brought it to the attention of CP Team here: http://www.codeproject.com/Messages/4409016/Article-Adoption.aspx  and as per the guidance I am submitting this alternative branch. 

XCrypt helps as a generic encryption and decryption wrapper for .NET applications. Besides that, it adds the following two algorithms (which are not part of the .NET Base Class Library):

  • Blowfish
  • Twofish 

As of this writing, I did have an observation of another algorithm called 'Blakesharp' (http://www.codeproject.com/Articles/286937/BlakeSharp-A-Csharp-Implementation-of-the-BLAKE-Ha). I have taken a humble initiative to get XCrypt updated in having able to use this algorithm too. 

Background 

  1. Basic concepts, BlowFish, TwoFish: Credits to the parent XCrypt
  2. Blakesharp:  http://www.codeproject.com/Articles/286937/BlakeSharp-A-Csharp-Implementation-of-the-BLAKE-Ha 

Using the code

The sample code initializes the engine to 3DES, you also can call InitializeEngine again to reset the engine to a different algorithm. 

C++
XCryptEngine xe = new XCryptEngine();
...
xe.InitializeEngine(XCryptEngine.AlgorithmType.TripleDES);

enc_str = xe.Encrypt(src_str);
dec_str = xe.Decrypt(enc_str);

xe.DestroyEngine(); 

NuGet:

You can get the latest reference to this assembly through NuGet here

Points of Interest 

  1. XCrypt earns the credit of making me learn different encryption algorithms besides kindling an interest to explore on them. 
  2. .NET has a good cryptography library but the paucity of documentation in MSDN as an end-to-end solution makes you run pillar to post whilst trying to decide on a particular algorithm. XCrypt endeavors to fulfill the gap. 

Change log: 

The following are the changes from the parent program (XCrypt): 

  1. Included the two BlakeSharp algorithms into XCrypt as I had highlighted. 
  2. The Test Application had hard-coded 'This is a test string' as the initial value. To make it a bit more realistic I have replaced that with srcText.Text = Environment.UserName.Length > 0 ? Environment.UserName : "Hello World";.
  3. The Test Application had bloated piece of code that the algorithm names were repeatedly hard-bound. I have tried replacing that with a quick and small reflection code (LoadEnumMembers()).
  4. The Test Application had a bug that for hash where decryption would not be possible. I changed this by exposing two more public methods disabling the Decrypt button for the same.  
  5. I have removed the setup and other projects which might not be of utility for a lot of users.  

History  

  • First update built on XCrypt in a humble endeavor to make it a one-stop lookup for a cryptography library in .NET.
  • Added a quick clipboard support to the application. 
  • 8th May 2013: Now you can have XCrypt from within a using block of the application so that memory is elegantly reclaimed. 

License

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


Written By
Software Developer
India India
Vasudevan Deepak Kumar is from Chennai, India who has been in the programming career since 1994, when he was 15 years old. He has his Bachelors of Engineering (in Computer Science and Engineering) from Vellore Engineering College. He also has a MBA in Systems from Alagappa University, Karaikudi, India.
He started his programming career with GWBasic and then in his college was involved in developing programs in Fortran, Cobol, C++. He has been developing in Microsoft technologies like ASP, SQLServer 2000.
His current focus is ASP.NET, C#, VB.NET, PHP, SQL Server and MySQL. In his past-time, he listens to polite Carnatic Music. But the big question is that with his current Todolist backlog, does he get some past time?

Comments and Discussions

 
PraiseThank you! Fills my needs perfectly. I did make one change, though... Pin
Mark Miller15-Feb-17 11:02
Mark Miller15-Feb-17 11:02 
QuestionDoes not work if you need Blowfish ECB mode Pin
angusmf29-Jan-16 9:48
angusmf29-Jan-16 9:48 
GeneralMy vote of 4 Pin
Ashutosh Phoujdar24-Jun-13 23:19
Ashutosh Phoujdar24-Jun-13 23:19 
GeneralMy vote of 5 Pin
_Vitor Garcia_21-Mar-13 6:22
_Vitor Garcia_21-Mar-13 6:22 
GeneralMy vote of 4 Pin
Prasad Khandekar20-Mar-13 22:08
professionalPrasad Khandekar20-Mar-13 22:08 
GeneralMy vote of 4 Pin
Shubham Choudhary20-Mar-13 20:26
Shubham Choudhary20-Mar-13 20:26 
GeneralMy vote of 5 Pin
adriancs26-Jan-13 17:19
mvaadriancs26-Jan-13 17:19 
GeneralMy vote of 5 Pin
Joezer BH25-Oct-12 1:51
professionalJoezer BH25-Oct-12 1:51 
Questionwhere is the project? Pin
Fabio Malpezzi24-Oct-12 23:29
professionalFabio Malpezzi24-Oct-12 23:29 
AnswerRe: where is the project? Pin
Vasudevan Deepak Kumar25-Oct-12 0:05
Vasudevan Deepak Kumar25-Oct-12 0:05 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.