Skip to main content
Email Password   helpLost your password?

Windows Data Protection

DPAPI - Data Protection Application Programming Interface; most probably the smallest API available under Win32. It contains just two functions.

Beginning with Windows 2000, Microsoft introduced the DPAPI. It wasn't well known or documented until Windows XP came out.

The DPAPI is a pretty well thought-out mechanism to allow any application to do simple and yet powerful encryption for its data. It has good recovery methods - in case the password gets lost, fully supports enterprise or home use and is based on the Cryptographic Services available under Win32.

So, what does it actually do?? Simple - it encrypts or decrypts a block of data.

And it does it without asking much for settings, cryptographic keys, algorithms and other hocus-pocus. Sounds like a ideal function for securing sensitive data? Definitely. There are some options that you can set but it goes even without them.

Here are some highlights:

MSDN contains a very well written article explaining the guts of DPAPI and is for sure worth reading if you are into security.

While DPAPI isn't generally difficult to use it has some pitfalls which you can avoid with the CProtectedData class

The class makes all necessary conversions if needed (DPAPI takes only UNICODE strings) and handles filling the data structures, allocating/freeing memory and so on. But at the end its just a wrapper class.

It provides one function in many flavors to perform the encryption and another one for decryption. Sanity checks on parameters are performed.

User interface

As you can see on the pictures, the CryptoAPI provides some dialog boxes with information and options to the user. It allows the user to modify encryption strength, choose a custom password and view information about the data to be encrypted.

Its important to remember when the user is allowed to choose a password, he most probably will forget it. In this case there is no way to retrieve this lost password and the data is not recoverable.

The main dialog when the UI is enabled.

The "Set security level..." dialog.

Changing to High Security mode enables the password. If you don't supply a description, the user can enter a description on his own.

The "Details..." dialog.

How to use?

Create an instance of CProtectedData, call its SetData() member function, if needed set some options and finally call one of the ProtectData() or UnprotectData() functions. Both return a pointer to a DATA_BLOB structure. The DATA_BLOB structure contains the size of the resulting data and a pointer to the data. If the cbData member is 0 the encryption/decryption failed and you can call ::GetLastError() to retrieve the reason.

Be aware that this functions may fail when you enable the user interface because the user can cancel the operation while normally the functions succeed.

CProtectedData pd;
pd.SetData(pPlainData, dwPlainDataSize);

const DATA_BLOB* pData = pd.ProtectData();
if(pData->cbData)
    // well, use the data in pData->pbData

For convenience there are two derived classes CUserProtectedData and CMachineProtectedData. While the first is equal to the CProtectedData class, the second class just sets the appropriate option to encrypt with machine credentials. They are just provided for code cleanness.

The DPAPI uses optional entropy data which is supplied by the application. If you supply entropy data, it will - simply expressed - be taken as a part of the password and included in key generation. In other words, it increases security. Data encrypted without entropy data can be decrypted by any other application too.

One last thing is up to you in order to avoid memory leaks: when you retrieve the description string from the encrypted data by supplying UnprotectData() with a pointer to a LPTSTR variable it will place the description into this variable and you must call ::LocalFree() when you don't need it anymore.

Sample Application

The sample application shows how to use any and all of the available options and performs multiple full cycles of encryption/decryption with and without user intervention. Anyway, it does not save the encrypted data to disk.

Compatibility

All classes are fully MBCS/Unicode enabled. The sample contains all configurations. Written, compiled and tested under VC7 but should also compile with VC6 and below. The header file automatically add linking with crypt32.lib. Remember that you need Windows 2000 or Windows XP to use DPAPI.

You must Sign In to use this message board.
 
 
Per page   
 FirstPrevNext
GeneralFailed encryption And Corrupted decryption [modified] Pin
ehaerim
10:36 27 Feb '07  
GeneralVS 2005 (VS8) Decrypted Data always returned broken Pin
Amit2203
0:39 5 Feb '07  
GeneralRe: VS 2005 (VS8) Decrypted Data always returned broken Pin
ehaerim
10:41 27 Feb '07  
GeneralRe: VS 2005 (VS8) Decrypted Data always returned broken Pin
Amit2203
11:01 28 Feb '07  
GeneralWhat about file size? Pin
esquijarosa
16:44 29 Dec '04  
GeneralHow to decrypt on a different machine? Pin
Xavier John
13:50 12 Nov '03  
GeneralRe: How to decrypt on a different machine? Pin
SaurweinAndreas
14:14 12 Nov '03  
GeneralRe: How to decrypt on a different machine? Pin
Xavier John
16:00 12 Nov '03  
GeneralRe: How to decrypt on a different machine? Pin
SaurweinAndreas
1:09 13 Nov '03  
GeneralRe: How to decrypt on a different machine? Pin
Xavier John
6:58 13 Nov '03  
GeneralRe: How to decrypt on a different machine? Pin
SaurweinAndreas
7:08 13 Nov '03  
GeneralBug with wrong entropy code Pin
George Montemayor
9:44 30 Sep '03  
GeneralHow did you guys run this sample? Pin
Beer
14:36 10 Dec '02  
GeneralRe: How did you guys run this sample? Pin
Andreas Saurwein
2:44 11 Dec '02  
GeneralRe: How did you guys run this sample? Pin
Beer
7:28 11 Dec '02  
GeneralRe: How did you guys run this sample? Pin
Andreas Saurwein
11:47 11 Dec '02  
GeneralRe: How did you guys run this sample? Pin
Beer
12:56 11 Dec '02  
GeneralRe: How did you guys run this sample? Pin
Anonymous
6:42 8 Jul '03  
GeneralThanks and ideas on software protection? Pin
dswigger
9:26 28 May '02  
GeneralRe: Thanks and ideas on software protection? Pin
Andreas Saurwein
9:54 28 May '02  
GeneralRe: Thanks and ideas on software protection? Pin
dswigger
10:45 28 May '02  
GeneralRe: Thanks and ideas on software protection? Pin
Andreas Saurwein
11:04 28 May '02  
GeneralRe: Thanks and ideas on software protection? Pin
dswigger
11:20 28 May '02  
GeneralRe: Thanks and ideas on software protection? Pin
Hugo Hallman
12:06 1 Aug '03  


Last Updated 21 May 2002 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2009