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