Click here to Skip to main content
15,885,914 members
Articles / Programming Languages / VBScript

Simple Encryption

Rate me:
Please Sign up or sign in to vote.
2.79/5 (21 votes)
23 Apr 2002CPOL 127.1K   3.9K   19   4
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

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
Freelance Programmer/Student

Comments and Discussions

 
NewsTwo other related encryption articles in CodeProject ... Pin
Tony Selke27-Sep-07 6:52
Tony Selke27-Sep-07 6:52 
GeneralImage Encryption Pin
Arpi Jais12-Jan-06 0:34
Arpi Jais12-Jan-06 0:34 
GeneralAnalizing encryption Pin
Gabriel 23-May-02 5:20
Gabriel 23-May-02 5:20 
GeneralXOR cipher Pin
Blake Coverett24-Apr-02 22:11
Blake Coverett24-Apr-02 22:11 

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.