Click here to Skip to main content
Licence GPL3
First Posted 26 Jun 2010
Views 25,978
Downloads 440
Bookmarked 27 times

SpaceCrypto: A Simple Crypto++ Wrapper

By | 20 Sep 2010 | Article
To simply encrypt\decrypt your data...

Introduction

This library helps you to develop your applications in a very easy way with Crypto++. It permits a developer with a minimal understanding of C++ to rapidly use a crypting library!

My idea was to help new Crypto++ programmers to avoid using their time reading the Crypto++ manual, and adapting all Crypto++ functions to the C++ standard string type.

Using the Code

The SpaceCrypto namespace is divided into two classes: Crypt and Hash. The first one allows you to perform rapid encrypt\decrypt operations with the most common methods (AES, Twofish, DES,...) using the C++ string type (std::string). The second one performs hashing encryption (SHA, MD5, ...).

Crypto Class Usage

Now we're ready to use the wrapper. The first thing you need to declare is an instance of the Crypt class in the SpaceCrypto namespace. You can use one of the predefined typedefs that includes most of the common algorithms (AES, Blowfish, DES,..), or specify another encryption algorithm in the type name.

Note: In the last case, you need to include the library of the algorithm and specify it in the type name.

#include "cryptopp560\rc6"
...
SpaceCrypto::Crypt<CryptoPP::RC6> hi;

After declaring an instance of the Crypt class, you must set the plain text, the key, and optionally the IV. The function parameters are self explanatory. Remember that you must specify the incoming string format type (HEX or normal), or it will automatically turn into normal input. You can also specify the output type (setInputMode and set OutputMode). When you're ready to encrypt (or decrypt) your string, you need to call the Encrypt() (or Decrypt()) method. This will return you the processed string.

Error Handling

  • getStatus() will return a boolean value representing the current status of obj (true = error; false=no errors)
  • getErrorMsg() will return a string indicating the current error message

You can only perform one encrypt\decrypt function at a time. To perform another crypt operation with the same Crypto object, you need to call the reset() function. This is a security reason, but it has another explanation... When you call the Encrypt function for the first time (or Decrypt), obj proceeds to encrypt all data. So if you call the Encrypt function again (to retrieve another coded string), it doesn't call the Crypto++ crypting function again, but it will simply return the already encoded string.

Security advise: For this reason, I strongly recommend you to call the reset() function immediately after the conversion, if you don't need to call other functions again, because the plain string and the plain key will remain in the RAM until you delete the object!

Hash Class Usage

The hash function work similar to the crypto class, with some exceptions:

  • Remember that hash functions are one-way, so you can't retrieve the string back.
  • The Hash class offers the addStr function that allows you to add some text to the plain string.

Class Usage (Example)

#include "cryptopp_wrapper.h"

int main()
{
    ...
    cout<<"Space Wrapper TEST!"<<endl<<endl;
    SpaceCrypto::CryptBlowFish hello;
    hello.setPlainString("HelloWorld!");
    hello.setKey("mySecUreKey!!");
    std::string crypt;
    crypt = hello.Encrypt();
    cout<<"Plain Text: HelloWorld!"<<endl;
    cout<<"Crypt Text: "<<crypt<<endl;
    hello.reset();
    hello.setEncString(crypt);
    hello.setInputMode(SpaceCrypto::HEX);
    hello.setKey("mySecUreKey!!");
    hello.setOutputMode(SpaceCrypto::NORMAL);
    cout<<"Decrypted Text: "<<hello.Decrypt()<<endl;
}

Linking Errors

SpaceCrypto cannot compile without including the cryptopp libraries. So, before compiling, read the following:

  1. Download and extract the cryptopp libraries from here.
  2. Compile the cryptopp static library by opening the "cryptlib.dsp" project, and include the generated library in your project (in the linker options).
  3. Insert in your project the cryptopp include folder (main directory).

Important Advise

  • You must include cryptlib.lib in your project in order to compile your code.
  • This is a simple class that helps programmers write simple code. If you need something more complex, you cannot use the class. If you need high level functionality... you must study Crypto++.
  • Predef IV is initialized at "0"; if you want to change it, you can edit the initializeIV function.

TODO

  • Better error-exception

History

  • 06/07/2010 - Added an example into the zip file, tutorial modified
  • 26/06/2010 - SpaceCrypto v.1.0.0 released
  • 20/09/2010 - Updated source code

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)

About the Author

SpaceSoft

Software Developer (Junior)
Space Softwares
Italy Italy

Member

We're born in the 2008. From the 2010, we're working for fun at an FPS opensource project.
This isn't a commercial company, is only a group created for fun by some teens

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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionLinux Pinmember0xt113:44 16 Nov '10  
GeneralMy vote of 2 PinmemberAescleal21:17 20 Sep '10  
GeneralRe: My vote of 2 PinmemberSpaceSoft4:05 21 Sep '10  
GeneralRe: My vote of 2 PinmemberAescleal8:16 21 Sep '10  
Generalaes returns no valid key length Pinmembertechs26:34 18 Sep '10  
AnswerRe: aes returns no valid key length PinmemberSpaceSoft4:02 21 Sep '10  
Generalidea nxt addition , pplease help Pinmembertechs27:42 14 Sep '10  
GeneralRe: idea nxt addition , pplease help PinmemberSpaceSoft4:13 15 Sep '10  
GeneralRe: idea nxt addition , pplease help Pinmembertechs25:44 18 Sep '10  
GeneralExcellent wrapper, however-- Pinmemberemphero9920:06 5 Jul '10  
GeneralRe: Excellent wrapper, however-- Pinmemberemphero9920:20 5 Jul '10  
AnswerRe: Excellent wrapper, however-- [modified] PinmemberSpaceSoft10:32 6 Jul '10  
GeneralMy vote of 1 Pinmembernarfzort9:49 29 Jun '10  
GeneralRe: My vote of 1 PinmemberSpaceSoft12:26 29 Jun '10  
GeneralRe: My vote of 1 PinmemberOliver Jennert0:15 30 Jun '10  
GeneralRe: My vote of 1 PinmemberSpaceSoft2:44 30 Jun '10  
GeneralRe: My vote of 1 PinmemberPatLeCat21:10 30 Jun '10  
GeneralRe: My vote of 1 Pinmembernarfzort5:54 1 Jul '10  
GeneralRe: My vote of 1 PinmemberSpaceSoft8:26 1 Jul '10  
GeneralRe: My vote of 1 Pinmembernarfzort8:29 1 Jul '10  
GeneralRe: My vote of 1 PinmemberSpaceSoft8:51 1 Jul '10  
GeneralRe: My vote of 1 Pinmembernarfzort9:04 1 Jul '10  
GeneralRe: My vote of 1 PinmemberSpaceSoft14:21 3 Jul '10  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 20 Sep 2010
Article Copyright 2010 by SpaceSoft
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid