65.9K
CodeProject is changing. Read more.
Home

Simple Encryption

starIconstarIcon
emptyStarIcon
starIcon
emptyStarIconemptyStarIcon

2.79/5 (21 votes)

Apr 24, 2002

CPOL
viewsIcon

127436

downloadIcon

3899

Sometimes we may desire to hide our file contents from others. One of the possible ways is by encrypting these files. Here, a simple encryption technique is used (in VB - the same technique can be implemented in "C" also.)

Introduction

What does the code DO? Sometimes we may desire to hide our file contents from others. One of the possible ways is by encrypting these files. Here, a simple encryption technique is used (in VB - the same technique can be implemented in "C" also.)

Program Flow Explained

  • Open the File to be encrypted for Binary Access Read (say source file)
  • Open a temporary file where encrypted data is stored for Binary Access Write (say destination file)
  • Loop through the source file byte by byte
  • For each byte read from the file, complement the data (Using Not operator (in C we have to use "~" operator)
  • Write the complemented data to destination file
  • Delete the source file
  • Rename destination file as source file (now encryption is over)

How to Decrypt?

Since we have complemented and saved byte by byte, simply complement it again for reproducing the original file (i.e.: The same code can be used for both encryption and decryption).

The source code can be found at the top of this article.

History

  • 23rd April, 2002: Initial post