Click here to Skip to main content
15,892,768 members
Articles / Security / Encryption
Tip/Trick

Encrypting Editor Notepad replacement

Rate me:
Please Sign up or sign in to vote.
4.85/5 (50 votes)
19 Mar 2013CPOL80 min read 179.1K   6.1K   112  
Source code for an encrypting editor Notepad replacement.
This is an old version of the currently published tip/trick.

Introduction

I love Notepad! It is my favorite editing tool. It is fast and simple. So, why would I write a replacement program?

CryptPad is intended to be nearly the same as Windows 7 Notepad. The primary purpose of the program is to provide optional file encryption. This is valuable for files which contain sensitive information. Unlike many other encryption solutions, this one only encrypts and decrypts one file at save and open. There is never a decrypted version of the file stored unless the operator specifies to remove the encryption. The file can be stored multiple places and moved freely always in encrypted form. Anyone who knows the encryption string can read the file with this program. I now use CryptPad to edit everything where I would have used Notepad.

Only ASCII is supported in the encryption functions. Non-ASCII characters will not be encrypted. My apologies to those whose language is not based on ASCII. The encryption algorithm is not particularly sophisticated but it is completely effective to block the curious and prying. This is not intended to be a high security solution!

Background

Because of the importance of maintaining multiple passwords for better security, I have a file with all the passwords in it that I use. This is also a security risk unless the file is encrypted. I have examined many encryption solutions and none does exactly what I need. I need to be able to transport and store an encrypted file anywhere I want. Encrypted drives are not what I need. It must never exist in decrypted form. Therefore I need a simple editor which opens, decrypts, edits, encrypts, and saves a file.

Using the code

I am providing the complete VS2010 project zip file with complete source code for CryptPad, the encrypting Notepad replacement program. The program is compiled with the .NET framework version 3.5, which is included automatically with the Windows 7 OS. The program has only been well used and tested with the Windows 7 OS.

The program has barely been used with the Windows 8 OS (Yuck!).

The program has not been tested with Windows Vista or XP. Unfortunately, the .NET framework version 3.5 is not installed in Windows Vista or XP so you will need to install it to use the program in Windows XP.

Program installation is recommended for a CryptPad directory under the Documents directory for an individual user. The Program files directory can be used for an administrator install for all users. "Open With" can be set to default to CryptPad for .SAFE files.

You might choose to set default to CryptPad for .TXT also to take advantage of the additional editing functions. A REG file is provided which contains all kinds of settings I use to make CryptPad the default editor. These have been used and tested on Windows 7.

Additional details about the program:

I hope you find the program useful and the source code instructive for picking up some ideas. I am interested in any problems you may find in the program and in particular any incompatibility as a Notepad replacement. I am also interested in your ideas about improving this simple program. I have learned a lot by examining the code of others. I hope examing my code will be useful to you.

Points of interest

The novel aspects of the program are the encryption. The program uses a quick and simple scrambling algorithm of addition/subtraction based on a secret encryption string provided by the operator. The program encrypts only ASCII so that I have a contiguous arithmetic range. The intent is to continue to use text rather than binary processing.

These example excerpts are not identical to the supplied source.

private string Encrypt (string str)
{
	StringBuilder st = new StringBuilder (str);
	for (int i = 0; i < st.Length; ++i)
	{
		int chr = st[i];
		if (isASCII ((char) chr))
		{
			chr = ' ' + ((E (i) + (chr - ' ')) % 95);
			st[i] = (char) chr;
		}
	}
	return st.ToString ();
}

private string Decrypt (string str)
{
	StringBuilder st = new StringBuilder (str);
	for (int i = 0; i < st.Length; ++i)
	{
		int chr = st[i];
		if (isASCII ((char) chr))
		{
			chr = ' ' + ((chr - 32) - E (i) + 95) % 95;
			st[i] = (char) chr;
		}
	}
	return st.ToString ();
}

The encryption string is scrambled with a psuedo-random number seeded with a checksum of the encryption string

private int E (int i)
{
return (encryption_string[i % encryption_string.Length]
 + i + i * random_seed) % 95;
}

// plus checksum for random_seed
private int Checksum2 (string str)
{
	int checksum = 0;
	for (int i = 0; i < str.Length; ++i)
	{
		checksum += str[i];
	}
	return checksum;
}

The program uses an additional XOR checksum placed in the file to catch typos in the encryption string. This is critical to verify input since the encryption string is password masked.

// xor checksum for in the file
private uint Checksum (string str)
{
	uint checksum = 0;
	for (int i = 0; i < 32; ++i)
	{
		checksum <<= 1;
		checksum ^= str[i % str.Length];
	}
	return checksum;
}

History

  • Version 1.3.0.0 released 2013-03-17:
    • Handle ANSI, UNICODE, and UTF-8 files. Provides conversions.
  • Version 1.2.0.0 released 2013-03-15:
    • Changed the program icon from a generic icon to a custom design.
    • Added the "Edit" option "Transpose" to switch the character to the left and right of the cursor. I don't know how often you have a problem with transposing characters as you type but it happens to me a lot.
    • Added registry file to automatically use CryptPad for selected file types.
  • Version 1.1.0.0 released 2013-03-08:
    • Added the QuickCrypt function.
    • Required the encryption string to be at least four characters. Strengthened the checksum and encryption header. Corrected loss of the '~' character. Scrambled the encryption string. Incompatible with version 1.0 encryption. You must copy and paste the plaintext of existing encrypted files from the version 1.0 program to the version 1.1 program and save with new encryption.
    • Corrected some confusion with the initial directory on a "Save As" after a command line open.
    • Finished the Replace function, corrected dialog inconsistencies, and improved Notepad similarity.
    • Changed Edit menu option "Capital&ize" to "&Initial Capital"
    • Increased textbox.MaxLength from 32KB to 15MB. Generate an error and fail the open if the file size is greater than 10MB. Generate a warning if the size is greater than 5MB.
  • Version 1.0.0.0 released 2013-03-01:
    • These are the new and changed features compared to Notepad.
    • Only ASCII is supported in the encryption functions. Non-ASCII characters will not be encrypted. The initial encryption algorithm is not particularly sophisticated but it is completely effective to block the curious and prying. This is not intended to be a high security solution!
    • Automatic random password generation for websites. The sophisticated password would be stored in the encrypted file so you don't have to remember it. A typical line or sequence of lines in the file would have the website address, the email address/username, and the password for a quick and simple copy and paste to login.
    • The file is held open to reduce accidental multiple change problems. Read share only. Therefore, a read-only option is allowed on open.
    • The secondary purpose is to provide some enhanced functionality for general file editing:
    • Uppercase, lowercase, capitalize selection conversion.
    • Word wrap toggle remembers cursor location. Unlike Notepad it does not jump you to the beginning of the document.
    • Replace All leaves the last changed selection highlighted instead of jump to the beginning.
    • Go To works with word wrap on though the meaning is changed to wrapped line numbers.
    • The default directory for "Open" and "Save as" is initially the documents directory and becomes the directory of the last opened or saved file in the current session.
    • The Verdana font at 12 point is used in all program controls. This provides higher visibility for easier readability.

License

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


Written By
Systems Engineer IAUA End Time Ministry
United States United States
I am a retired Software Systems Design Engineer experienced with IEEE standards and the entire IEEE software development life cycle. Concept Exploration, Requirements, Design, Implementation, Test, Installation and Checkout, Operation and Maintenance. I enjoy working with people and solving customer problems.

I am currently a writer for my personal ministry: IAUA End Time Ministry

Comments and Discussions

Discussions on this specific version of this article. Add your comments on how to improve this article here. These comments will not be visible on the final published version of this article.