Click here to Skip to main content
15,880,469 members
Articles / Desktop Programming / MFC
Article

Encryption using the Win32 Crypto API

Rate me:
Please Sign up or sign in to vote.
4.24/5 (19 votes)
8 Sep 20054 min read 403.8K   18.8K   85   60
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


Written By
Technical Lead
Denmark Denmark
I'm a technical lead and software architect, who holds a master's degree from Aarhus University, Denmark. I have commercial experience with IT and software engineering since mid-nineties and my professionalism has been confirmed by IEEE with my elevation to Senior Member.


Active help channel - Codementor
https://www.codementor.io/jessn/profile


Deprecated help channel - Support & help
https://groups.google.com/forum/#!forum/nielsen-tools-support

Comments and Discussions

 
QuestionWhere did KEY_FILE come from? Pin
df on cp15-Jul-21 10:17
df on cp15-Jul-21 10:17 
QuestionEncryption of Japanese characters Pin
uzayim3-Dec-12 10:09
uzayim3-Dec-12 10:09 
AnswerRe: Encryption of Japanese characters Pin
Jessn5-Dec-12 8:17
Jessn5-Dec-12 8:17 
GeneralRe: Encryption of Japanese characters Pin
uzayim5-Dec-12 9:03
uzayim5-Dec-12 9:03 
QuestionDigital Certificate Pin
Daniel Ramnath23-Sep-12 7:49
Daniel Ramnath23-Sep-12 7:49 
Hi,

I am looking some good article, website or book which I can purchase for programming using windows digital certificate api. The MSDN doesn't seems to be of much help. Please advice me. Thank you.

Regards,

Daniel Ramnath.
Jesus saves

Bugerror in running the code Pin
Member 91308804-Jul-12 17:06
Member 91308804-Jul-12 17:06 
AnswerRe: error in running the code Pin
Jessn30-Jul-12 0:10
Jessn30-Jul-12 0:10 
Generalproblem using the crypto api Pin
stylix0074-May-09 22:35
stylix0074-May-09 22:35 
QuestionHave bugs been fixed int his sample code? Pin
Gonzalo Parra17-Jun-08 3:55
Gonzalo Parra17-Jun-08 3:55 
AnswerRe: Have bugs been fixed int his sample code? Pin
Jessn17-Jun-08 4:56
Jessn17-Jun-08 4:56 
GeneralRe: Have bugs been fixed int his sample code? Pin
Gonzalo Parra17-Jun-08 6:28
Gonzalo Parra17-Jun-08 6:28 
AnswerRe: Have bugs been fixed int his sample code? Pin
Jessn17-Jun-08 8:44
Jessn17-Jun-08 8:44 
GeneralRe: Have bugs been fixed int his sample code? Pin
Gonzalo Parra17-Jun-08 8:53
Gonzalo Parra17-Jun-08 8:53 
QuestionIs it possible to restrict the output characters? Pin
Angus Comber15-Jun-08 11:16
Angus Comber15-Jun-08 11:16 
AnswerRe: Is it possible to restrict the output characters? Pin
Jessn16-Jun-08 4:15
Jessn16-Jun-08 4:15 
GeneralRe: problem Pin
nomicism22-Oct-07 0:15
nomicism22-Oct-07 0:15 
GeneralRe: problem Pin
Jessn9-Dec-08 21:26
Jessn9-Dec-08 21:26 
NewsOrigin of key data... Pin
achainard13-Oct-07 5:09
achainard13-Oct-07 5:09 
Questionthe key in key.h Pin
Ray Cheng17-Apr-06 21:07
Ray Cheng17-Apr-06 21:07 
AnswerRe: the key in key.h Pin
Jessn18-Apr-06 0:56
Jessn18-Apr-06 0:56 
QuestionRe: the key in key.h Pin
Ray Cheng18-Apr-06 17:23
Ray Cheng18-Apr-06 17:23 
AnswerRe: the key in key.h Pin
Jessn31-May-06 1:22
Jessn31-May-06 1:22 
GeneralRe: the key in key.h Pin
Ray Cheng8-Jun-06 4:08
Ray Cheng8-Jun-06 4:08 
GeneralRe: the key in key.h Pin
Jessn9-Jun-06 0:04
Jessn9-Jun-06 0:04 
GeneralBuilding Secure Applications Pin
Jessn23-Jan-06 3:30
Jessn23-Jan-06 3:30 

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.