Encrypted files using Cygwin and OpenSSL

by Daniel Petri - January 8, 2009
Printer Friendly Version

Using Cygwin, the free open-source terminal emulator, in coordination with OpenSSL, you can create cross-platform encrypted files. The files created using Cygwin can be exported using mobile media including thumb drives, CDs, external hard drives, etc. Cygwin and OpenSSL are bundled in the download of Cygwin. The following tutorial (although demonstrated using Windows Vista) can be applied to Windows XP, Linux, and Mac OS.

Petri Recommended: Update to the Latest Vista Drivers

Vista's performance can be improved dramatically by installing the latest Vista-Certified hardware drivers. PC hardware manufacturers release new, improved Vista drivers continually: New versions are probably available for your PC right now.

Petri IT Knowledgebase Team

>> Download Driver Genius Pro: Our recommended Vista driver update scanner (5.1Mb)

Download Cygwin from the project homepage. Cygwin is the executable located approximately half-way down the page.

Double-click setup.exe to begin the installation and click Next.

Choose Install from Internet and click Next.

Leave the installation directory as C:'cygwin and leave the Default Text File Type set as Unix/binary and click Next.

Change the local package directory path to C:'Users'USERNAME' and click Next.

On the Select Your Internet Connection dialog, select Direct Connection and click Next.

Select a mirror and click Next.

Untie the “Net” tab, double-click openssl and click Next.

It will take a few minutes for Cygwin to install.

Leave the default icon selections and click Finish.

Congratulations, the installation of Cygwin is complete. Double-click the icon on your desktop to launch Cygwin.

Cygwin will create several personalization files and will launch the default window (shown below).

In order to create an encrypted version of a file enter the following command:

openssl des3 -salt -in UnencryptedFile.html -out EncryptedFile.html.des3

Replace “unencryptedFile.html” with the name of a file you would like to encrypt. OpenSSL will prompt you to create a password for the file.

You will now notice an encrypted version of your file was created in the same directory and named “EncryptedFile.html.des3.” If you try to open this file without first entering the password, you will get incoherent output. To decrypt your file, enter the following command:

openssl des3 -d -salt -in EncryptedFile.html.des3 -out NewUnencryptedFile.html

OpenSSL will once again prompt you to enter your password. Upon successful authentication, OpenSSL will create a new, decrypted version of your file in the same directory.

Once your file is encrypted, you can transport the file onto portable media in the same way that you would transfer any other file. You will be able to decrypt your file on any computer with OpenSSL installed including Linux, Windows Vista or Windows XP, or Mac OS.

Related Articles

Recent Security Forum threads

Got a question? Post it on our Security Forums!

Related Articles


Sign Up For the Petri IT Knowledgebase Weekly Digest!
*