Click here to Skip to main content
Licence 
First Posted 8 Sep 2005
Views 142,260
Bookmarked 68 times

Encryption using the Win32 Crypto API

By | 8 Sep 2005 | Article
How to encrypt using the Win32 Crypto API.

Introduction

Using information technology today gets more and more sophisticated. The information that is being transferred and stored are often classified material of some kind and it is often necessary to prevent it from being read by third parties. The keyword for this particular problem is (both logical and physical) security. A part of the security aspect is encryption. Often people think that security is “just” something you plug in afterwards – it is definitely not!

A few rules of thumb when encryption is going to be included in the final product can be summarised into the following basics:

  1. Do not base the encryption on the algorithm itself.
  2. Make the algorithm public and the key private.

RSA Encryption

One of the most well known encryptions today is the RSA encryption. This form for encryption uses asymmetric keys. This means that you cannot evaluate the second key if you have the first one and vice versa.

The RSA encryption is a public-key crypto system, which uses two algorithms (E, D), one for encryption and one for decryption. You have a key pair containing: a secret key (sk) and a public key (pk).

m = D sk (E pk (m))
m = cd mod n AND c = me mod n <=>
m = (me mod n)d mod n

CBC Mode

The RSA encryption is typically using CBC mode (Cipher Block Chaining mode) when encrypting. This means the text that is being encrypted is divided into blocks. Each block is chained together, using the XOR operator, and then encrypted.

Sample screenshot

When using the CBC mode of operation it is required that all blocks have the same size. If the last block has a size less than the others then it will be necessary to use padding. The padding will then fill the block until it has the same size as the others. Formally the CBC mode operates in the following way, where we start with y0, which is a 64-bit initialisation vector:

y i = e k (y i-1 XOR x i), i >= 1

Doing the decryption, the entire operation is just reversed. This means that the cipher blocks are decrypted and then XORed. In this way we will end up with the clear text again.

x i = y i-1 XOR (d k (y i)) , i >= 1

Using the code

The Win32 Crypto API does provide some functionality, which can be used to perform an encryption. The advantage using the Crypto API is that you don’t need to use/find any third party cryptographic provider and figure out how it is installed and used. Simply use the one that sticks to the operating system. The disadvantage is clear – it is not simple to change to another operation system.

Sample screenshot

Before any functionality can be used it is necessary to create a context. This context is used several times when doing the encryption, so it is important that the handle is kept open until the encryption is done.

if (!CryptAcquireContext(&hProv, NULL, MS_DEF_PROV, PROV_RSA_FULL, 0))
{
    dwResult = GetLastError();
    if (dwResult == NTE_BAD_KEYSET)
    {
        if (!CryptAcquireContext(&hProv, 
            NULL, MS_DEF_PROV, PROV_RSA_FULL, 
            CRYPT_NEWKEYSET))
        {
            dwResult = GetLastError();
            MessageBox("Error [0x%x]: CryptAcquireContext() failed.", 
                       "Information", MB_OK);
            return;
        }
    }
    else {
        dwResult = GetLastError();
        return;
    }
}

When we get the context, we need to get a (session) key, which we are going to use when doing the encryption. The key can be created from scratch or it can be imported from a file. In the following code snip, the pbBlob is (if not NULL) a binary that contains the key, which is fetched from a file.

if (pbBlob) {
    if (!CryptImportKey(hProv, pbBlob, cbBlob, 0, 0, &hSessionKey))
    {
        dwResult = GetLastError();
        MessageBox("Error [0x%x]: CryptImportKey() failed.", 
                                      "Information", MB_OK);
        return;
    }
}
else { 
    if (!CryptImportKey(hProv, PrivateKeyWithExponentOfOne, 
        sizeof(PrivateKeyWithExponentOfOne), 0, 0, &hKey))
    {
        dwResult = GetLastError();
        MessageBox("Error CryptImportKey() failed.", 
                              "Information", MB_OK);
        return;
    }
    if (!CryptGenKey(hProv, CALG_RC4, CRYPT_EXPORTABLE, &hSessionKey))
    {
        dwResult = GetLastError();
        MessageBox("Error CryptGenKey() failed.", 
                           "Information", MB_OK);
        return;
    }
}

It is always a good idea to use the PKCS#7 standard, when storing the key. Please note that the project enclosed with this article does not use it.

After the key is imported or generated, it is now time to perform the encryption or decryption. The encryption and decryption depends on a session key, which is based on the key we just imported or generated previously.

void Encrypt()
{
    unsigned long length = m_clear.GetLength() +1;
    unsigned char * cipherBlock = (unsigned char*)malloc(length);
    memset(cipherBlock, 0, length);
    memcpy(cipherBlock, m_clear, length -1); 

    if (!CryptEncrypt(hSessionKey, 0, TRUE, 0, cipherBlock, &length, length))
    {
        dwResult = GetLastError();
        MessageBox("Error CryptEncrypt() failed.", "Information", MB_OK);
        return;
    }

    m_cipher = cipherBlock;
    m_clear = "";
    free(cipherBlock);
}

The decryption does not vary much from the encryption. Like with the encryption it is done with just one invocation and the cipher text is then decrypted.

void Decrypt()
{
    unsigned long length = m_cipher.GetLength() +1;
    unsigned char * cipherBlock = (unsigned char*)malloc(length);
    memset(cipherBlock, 0, length);
    memcpy(cipherBlock, m_cipher, length -1); 

    if (!CryptDecrypt(hSessionKey, 0, TRUE, 0, cipherBlock, &length))
    {
        dwResult = GetLastError();
        MessageBox("Error CryptDecrypt() failed.", 
                            "Information", MB_OK);
        return;
    }

    m_clear = cipherBlock;
    m_cipher = "";

    free(cipherBlock);
}

Points of interest

The clear text / data is typically a string containing any text. Before performing the encryption it is a good idea to copy the data into an unsigned char pointer to avoid future problems with casts when the encryption is performed.

Finally, when using the Win32 Crypto API, please notice that it might not necessary compile as is. This is because a pre-processor definition is missing in the project.

#define _WIN32_WINNT 0x0400

When defining the above globally to the project, it will be possible to compile code that is using the Crypto API. My suggestion is to place the definition in the StdAfx.h file.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Jessn

Architect

Denmark Denmark

Member

I'm a software architect, who holds a master's degree from Aarhus University, Denmark. I have more than 10 yrs of commercial experience. I am specialized in security (crypto systems) and software architectures.
 
I'm working with C++, Qt, COM, DCOM, ATL and MFC applications based on either an Oracle database, a SQL Server database or even both. I have altso achieved a good knowledge of the C# language and the .NET platform.
 
My primary function is to develop commerce systems where security is an important issue such as systems for the ministry of foreign affairs and the danish national guard among others.

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
Generalproblem using the crypto api Pinmemberstylix00722:35 4 May '09  
QuestionHave bugs been fixed int his sample code? PinmemberGonzalo Parra3:55 17 Jun '08  
AnswerRe: Have bugs been fixed int his sample code? PinmemberJessn4:56 17 Jun '08  
GeneralRe: Have bugs been fixed int his sample code? PinmemberGonzalo Parra6:28 17 Jun '08  
AnswerRe: Have bugs been fixed int his sample code? PinmemberJessn8:44 17 Jun '08  
GeneralRe: Have bugs been fixed int his sample code? PinmemberGonzalo Parra8:53 17 Jun '08  
QuestionIs it possible to restrict the output characters? PinmemberAngus Comber11:16 15 Jun '08  
AnswerRe: Is it possible to restrict the output characters? PinmemberJessn4:15 16 Jun '08  
GeneralRe: problem Pinmembernomicism0:15 22 Oct '07  
GeneralRe: problem PinmemberJessn21:26 9 Dec '08  
NewsOrigin of key data... Pinmemberachainard5:09 13 Oct '07  
Questionthe key in key.h PinmemberRay Cheng21:07 17 Apr '06  
AnswerRe: the key in key.h PinmemberJessn0:56 18 Apr '06  
QuestionRe: the key in key.h PinmemberRay Cheng17:23 18 Apr '06  
AnswerRe: the key in key.h PinmemberJessn1:22 31 May '06  
GeneralRe: the key in key.h PinmemberRay Cheng4:08 8 Jun '06  
GeneralRe: the key in key.h PinmemberJessn0:04 9 Jun '06  
GeneralBuilding Secure Applications PinmemberJessn3:30 23 Jan '06  
QuestionHow is the code related to RSA? Pinmembersemmel714:12 24 Nov '05  
AnswerRe: How is the code related to RSA? PinmemberJessn4:35 24 Nov '05  
Questionsome problems with the program Pinmemberbbrehm0421:58 17 Nov '05  
AnswerRe: some problems with the program PinmemberJessn4:46 23 Nov '05  
GeneralRe: some problems with the program Pinmemberbbrehm0420:34 23 Nov '05  
Jess,
 
3. The error was #define NTE_BAD_KEY_STATE _HRESULT_TYPEDEF_(0x8009000BL). That still doesn't help me understand. Why would the key be in a bad state? Why would CryptExportKey() need to be called three times in the destructor? Does the key need to be saved to a text file? How does that saved key functionally compare to the key in key.h?
 
4. I was not referring to chaining. I just noticed that common substring at common locations were encrypted to the same values. I felt it might be less secure, but when I think about it, I doubt it is a problem. All it means is that if you know the key then you can determine what the key is. No worries there.
 
Thanks,
 
Bill

GeneralRe: some problems with the program PinmemberJessn22:57 23 Nov '05  
GeneralRe: some problems with the program Pinmemberbbrehm0415:44 24 Nov '05  

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
Web03 | 2.5.120529.1 | Last Updated 8 Sep 2005
Article Copyright 2005 by Jessn
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid