Click here to Skip to main content
15,881,089 members
Articles / Desktop Programming / MFC
Article

Serializing encrypted data

Rate me:
Please Sign up or sign in to vote.
4.56/5 (3 votes)
31 Oct 20011 min read 80.1K   1.4K   28   9
How to serialize encrypted data using CArchive

Introduction

I've recently discovered the CArchive class. I've never used it before. I had to save my application's preferences and I thought I would try to serialize it to a file using the CArchive class. Then only problem is that I need to encrypt the data.

So I sat down and wrote a CFile derived class to encrypt data while saving it.

In the demo project I've used the Rijndael algorithm. The implementation was written by Szymon Stefanek.

Description

The most important functions of the CFile class are Read and Write. Since these are virtual functions, you can override them with your own functions.

In the class, there are 2 callback functions. The class uses both to encrypt and to decrypt the data.

typedef UINT (FileEncryptProc)(const BYTE *pBuffer,UINT dwSize,BYTE *pDestination,DWORD
dwParam);

Parameters:

  • pBuffer - Pointer to the data
  • dwSize - Data length in bytes
  • pDestination - Pointer to a destination buffer
  • dwParam - User defined parameter

Return value:

New data length.

Usage

You set the callbacks using the SetEncryption function

//  These are the encryption and decryption functions

UINT Encrypt(const BYTE *pBufIn, UINT nSize, BYTE *pBufOut, 
             DWORD dwParam)
{
    return ((Rijndael*)dwParam)->padEncrypt(pBufIn, 
        nSize, pBufOut);
}

UINT Decrypt(const BYTE *pBufIn, UINT nSize, BYTE *pBufOut, 
             DWORD dwParam)
{
    return ((Rijndael*)dwParam)->padDecrypt(pBufIn, 
        nSize, pBufOut);
}

f.SetEncryption(&Encrypt, (DWORD)&rijEncrypt, &Decrypt, 
                (DWORD)&rijDecrypt); // Set the encryption callbacks

Conclusion

In the demo project, I've created two Rijndael objects. One for encryption and one for decryption. Both objects were initialized using the same key. I've also created a CFileEx object and set it's callbacks to my defined functions.

From that point, I can create a CArchive object and use it as normal with my file. As you can see in the demo, I am writing and reading various data types to and from the archive.

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
Web Developer
Israel Israel
Gilad was born accidently to a pair of old lesbians. His childhood was full of vibrators and drugs. Married without kids. Has 14 grandsons around the world, 4 crocodiles, 2 mushrooms and a green alien living behind the refrigerator.

Hobbies: Watching hardcore porn, sculpturing with snot, skydiving from stairs.

Check my Homepage for additional resources.

Quote: "There's always one more bug"

Comments and Discussions

 
Generalin out parameters Pin
selami16-Nov-03 23:08
selami16-Nov-03 23:08 
GeneralPlease explain with more details Pin
Gilad Novik16-Nov-03 23:20
Gilad Novik16-Nov-03 23:20 
GeneralRe: Please explain with more details Pin
p_hose17-Nov-03 1:01
p_hose17-Nov-03 1:01 
GeneralRe: Please explain with more details Pin
Gilad Novik17-Nov-03 1:43
Gilad Novik17-Nov-03 1:43 
Generalin out parameters Pin
Anonymous16-Nov-03 23:07
Anonymous16-Nov-03 23:07 
QuestionHelp Please?? Pin
xxhimanshu30-Oct-03 19:34
xxhimanshu30-Oct-03 19:34 
AnswerRe: Help Please?? Pin
Gilad Novik1-Nov-03 20:56
Gilad Novik1-Nov-03 20:56 
My suggest: Store the files unencrypted on a secured server (SSL), with server side authentication. That way, you don't need to worry for hijacking your data (due to the secured connection). You read the remote file as normal (you can even use IXMLHttpRequest to retrieve the document).

On your local machine, serialize the file using my class, so you can encrypt it.

Whoa! The internet is even on computers now!
Generalproblem with bigger objects Pin
eXplodus19-May-03 4:57
eXplodus19-May-03 4:57 
GeneralRe: problem with bigger objects Pin
kinmenhans10-Apr-13 23:22
kinmenhans10-Apr-13 23:22 

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.