Click here to Skip to main content
Licence GPL3
First Posted 19 Sep 2002
Views 180,486
Bookmarked 74 times

File Encryption Utility

By | 22 Sep 2002 | Article
File Encryption Utility based on Blowfish Encryption Algorithm.

Sample Image - FileEncryption.jpg

Introduction

After a long search for a simple and secure file encryption utility, that is simple and intuitive to use I've decided to write something of my own.

File Encryption utility is a simple tool for encrypting both text and binary files using the blowfish encryption algorithm.

The utility can create a self extracting encrypted file. For a deep view of how to create a self extracted executable check my other article: Creating Self-Extracted Executable .

Features

File Encryption Utility Has the following features:

  • Fast & Quick File Encryption/Decryption.
  • Internal File Wiping Utility.
  • Creating Self-Extracting Encrypted File.
  • Explorer Integration (through Configuration Dialog).
  • Command Line Parameters.

Language

The File Encryption utility is writen in native C++ using ATL only for windowing classing.

The usage of ATL is minimal so anyone who is not familiar with the library should be able to understand the code as well.

Overview

File Encryption Utility is divided to few small projects:

  • FileEnc – The UI of the file encryption utility, also containing the Processing class which is also used by SelfExtract and it is responsible for reading/writing files.
  • Enc_Blowfish – Blowfish encryption implementation (based upon Bruce Schneier and Jim Conger implementation).
  • SelfExtract – Self Extracting executable "header".
  • GenLib – Small Library holding all commonly used items in other project parts.
  • Builder – Small Console utility for creating the final File Encryption Executable.

GenLib – The General Library

In order to save time and to have a central point for all general purpose classes I'm working with a static library called GenLib.

A stripped version of the GenLib is available with the File Encryption Utility. In this version you can see the following general purpose classes:

  • GenFiles – Openning OpenFile/SaveFile and OpenDirectory Dialog Boxes.
  • SelfExtract – Creating Self-Extracting Executable.
  • Thread – Implementation of a parent class for classes who want to execute code in separate thread (more information can be seen in the header – thread.h).
  • FileWipe – Wiping a File from Hard Drive.

All those classes are under the GenLib namespace.

Additional Encryptions

Inside the FileEnc project there's an interface called EncryptionInterface – implementing this interface can allow you to easily change the encryption the utility uses.

Implementing this interface requires only stream cipher implementation and saves all the overhead of working with files.

Blowfish implementation is statically linked to the utility in order to avoid hacking by changing the dll. With a few minutes of work the utility can support a number of encryption dlls that can be loaded at runtime based on the users decision.

Security

In order to make the utility the most secure I can I've tried wiping information from memory when the application closes.

When looking at the source, you can see that I've used ZeroMemory API and few others APIs to delete information from memory (like the password used).

When encrypting a file you can mark the 'Wipe Source After Process' checkbox and by that insure that the file you're encrypting is not accessible.

Remarks

Decryption does NOT verify password correctness (information is being encrypted without adding any information about the file). As a result when decrypting with the wrong password you will receive a file with junk inside - this is not a bug.

The file encryption is based upon the password length - larger passwords equal better security.

Although I believe that the file wiping method is very secure, to be 100% sure you should use a product dedicated to that purpose.

Reference

Blowfish encryption algorithm - http://www.schneier.com/paper-blowfish-fse.html

Revision History

23 Sep 2002 - Initial Revision

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)

About the Author

Nir Dremer

Product Manager

Israel Israel

Member

Nir is a Product Manager from Israel with past Software Engineering Experience.
 
You're welcome to visit his photography site:
http://www.dremer.net/

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
QuestionHash algorithm Pinmemberunivmalik6:49 4 Apr '12  
GeneralBug PinmemberMeriInssi5:10 14 Nov '10  
GeneralRe: Bug PinmemberNir Dremer5:13 15 Nov '10  
GeneralMy vote of 1 Pinmembermathgeek548:37 3 Apr '09  
QuestionAES Encryption PinmemberMember 228457119:31 21 Sep '08  
AnswerRe: AES Encryption PinmemberNir Dremer21:19 21 Sep '08  
GeneralRe: AES Encryption PinmemberMember 228457123:00 23 Sep '08  
Hey,
 
Both encryption & Decryption works for me for input files such as .zip,.rar.
But from the source code of Processing.Run(), my understanding is that
content of each input file is read and is passed to BlowFishEnc::encryptStream() method.
So zip files, is this logic works (although its working) ? because how can we read block
of data into buffer with the code -

"fread(readBuffer, sizeof(char), bufferSize, readFile)"?

My understanding was one could only read and write text files with "fread"
Can you provide some help regarding this?
GeneralRe: AES Encryption PinmemberNir Dremer21:22 24 Sep '08  
GeneralRe: AES Encryption PinmemberPresu1:13 26 Sep '08  
GeneralRe: AES Encryption PinmemberNir Dremer8:40 26 Sep '08  
GeneralProgress bar incorrect Pinmemberdamir_tk10:14 26 Nov '06  
GeneralRe: Progress bar incorrect PinmemberNir Dremer11:11 26 Nov '06  
GeneralRe: Progress bar incorrect Pinmemberdamir_tk11:28 26 Nov '06  
Generalwiping is not that secure PinmemberBilliebub9:58 14 Nov '06  
GeneralRe: wiping is not that secure PinmemberNir Dremer6:16 22 Nov '06  
GeneralNeed an idea Pinmembersudha_sen19:05 19 Oct '06  
GeneralRe: Nice one :) PinmemberNir Dremer4:43 24 Mar '06  
Questionfile folder security Pinmembersalehbk22:15 15 Oct '05  
Generalwant DLL Pinmemberbhavik.dpr3:24 13 Oct '05  
GeneralRe: want DLL PinmemberNir Dremer3:34 13 Oct '05  
GeneralRe: want DLL Pinmemberbhavik.dpr18:32 13 Oct '05  
GeneralRe: want DLL PinmemberNir Dremer19:14 13 Oct '05  
GeneralRe: want DLL Pinmemberbhavik.dpr19:22 13 Oct '05  
GeneralRe: want DLL PinmemberNir Dremer21:16 13 Oct '05  
GeneralRe: want DLL PinmemberNir Dremer21:16 13 Oct '05  

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.120604.1 | Last Updated 23 Sep 2002
Article Copyright 2002 by Nir Dremer
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid