Click here to Skip to main content
Licence 
First Posted 31 Oct 2001
Views 60,565
Bookmarked 26 times

Serializing encrypted data

By | 31 Oct 2001 | Article
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

About the Author

Gilad Novik

Web Developer

Israel Israel

Member

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"

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
Generalin out parameters Pinsussselami23:08 16 Nov '03  
GeneralPlease explain with more details PinmemberGilad Novik23:20 16 Nov '03  
GeneralRe: Please explain with more details Pinmemberp_hose1:01 17 Nov '03  
GeneralRe: Please explain with more details PinmemberGilad Novik1:43 17 Nov '03  
Generalin out parameters PinsussAnonymous23:07 16 Nov '03  
QuestionHelp Please?? Pinmemberxxhimanshu19:34 30 Oct '03  
AnswerRe: Help Please?? PinmemberGilad Novik20:56 1 Nov '03  
Generalproblem with bigger objects PinmembereXplodus4:57 19 May '03  

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
Web04 | 2.5.120517.1 | Last Updated 1 Nov 2001
Article Copyright 2001 by Gilad Novik
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid