Tiny Encryption Algorithm (TEA) For The Compact Framework: Download Source Files - 96.1 KB
Tiny Encryption Algorithm (TEA) For The Compact Framework: Download Source Files - 96.1 KB
Tiny Encryption Algorithm (TEA) For The Compact Framework: Download Source Files - 96.1 KB
Page 1 of 5
C#, Windows, .NET CF, Mobile, .NET 1.1VS.NET2003, Dev Posted: Updated: Views: 18 Feb 2004 29 Feb 2004 126,579
Bookmarked: 47 times
Introduction
The Compact Framework omits the main encryption features in the Cryptography namespace to make room for more important features. Fortunately, it is not terribly difficult to implement some sort of cryptography to hide your sensitive data. I wanted to find a small algorithm that was secure and portable. After doing a little searching, I ran across the Tiny Encryption Algorithm (TEA). This algorithm was developed in 1994 by David Wheeler and Roger Needham of Cambridge University. This algorithm is extremely portable, and fast. There has been a successful cryptanalysis performed on the original TEA algorithm which caused the original authors to modify the TEA algorithm. The revised algorithm is called XTEA. There is not much information on this algorithm so there is no guarantee that the XTEA algorithm has not been broken as well. However, this algorithm could still be useful for applications that do not require the highest of security. The original algorithm was developed in C, but constructed in such a way that it is easy to port to other languages, like C#. I was able to port the original C algorithm to C# with minimal changes. I tested the algorithm on the full .NET Framework as well as the .NET Compact Framework and it works great on both platforms with no changes. For more information on how TEA encryption works, refer to the links at the bottom of this article.
http://www.codeproject.com/KB/mobile/teaencryption.aspx?display=Print
4/3/2009
CodeProject: Tiny Encryption Algorithm (TEA) for the Compact Framework. Free source code a... Page 2 of 5
Background
The Tiny Encryption Algorithm works on the principle of paired blocks of data. This makes it a little more challenging to prepare strings for encryption because you need to pass pairs of unsigned integers to the algorithm and then store them in some manner so the data can be recovered at a later point in time. I use some bit shifting to convert between integers and strings, so a little knowledge of number systems will help you out.
Simple huh? They don't call it tiny for nothing! Here is the decrypt function:
private void decode(uint[] v, uint[] k) { uint n=32; uint sum; uint y=v[0]; uint z=v[1]; uint delta=0x9e3779b9; sum = delta << 5 ; while(n-->0) { z -= (y << 4 ^ y >> 5) + y ^ sum + k[sum >> 11 & 3]; sum -= delta; y -= (z << 4 ^ z >> 5) + z ^ sum + k[sum & 3]; } v[0]=y; v[1]=z; }
Note: I only modified what was necessary to get the code to compile. I also formatted the code to make it a little more readable. In the original algorithm, they used an unsigned long for the variables. In C, an unsigned is a 32-bit unsigned integer. In .NET land, the equivalent is an unsigned integer. Now we have reached the challenging part. To use the algorithm with strings, we have to convert the strings into an acceptable format. Here is a basic run-through of what I did to make use of the
http://www.codeproject.com/KB/mobile/teaencryption.aspx?display=Print
4/3/2009
CodeProject: Tiny Encryption Algorithm (TEA) for the Compact Framework. Free source code a... Page 3 of 5
algorithm: Make the string an even length by adding a space to the end of it if necessary. We need to do this because the algorithm expects pairs of data. Convert the string to an array of bytes. Loop through the array and pass a pair of values to the encrypt function. Convert the two cipher values to strings and append to one long string. My Encrypt function looks something like the following:
public string Encrypt(string Data, string Key) { uint[] formattedKey = FormatKey(Key); if(Data.Length%2!=0) Data += '\0'; // Make sure array is even in length. byte[] dataBytes = System.Text.ASCIIEncoding.ASCII.GetBytes(Data); string cipher = string.Empty; uint[] tempData = new uint[2]; for(int i=0; i<dataBytes.Length; i+=2) { tempData[0] = dataBytes[i]; tempData[1] = dataBytes[i+1]; code(tempData, formattedKey); cipher += ConvertUIntToString(tempData[0]) + ConvertUIntToString(tempData[1]); } return cipher; }
The Decrypt function basically is just the reverse of the encrypt function:
public string Decrypt(string Data, string Key) { uint[] formattedKey = FormatKey(Key); int x = 0; uint[] tempData = new uint[2]; byte[] dataBytes = new byte[Data.Length / 8 * 2]; for(int i=0; i<Data.Length; i+=8) { tempData[0] = ConvertStringToUInt(Data.Substring(i, 4)); tempData[1] = ConvertStringToUInt(Data.Substring(i+4, 4)); decode(tempData, formattedKey); dataBytes[x++] = (byte)tempData[0]; dataBytes[x++] = (byte)tempData[1]; } string decipheredString = System.Text.ASCIIEncoding.ASCII.GetString(dataBytes, 0, dataBytes.Length); // Strip the null char if it was added. if(decipheredString[decipheredString.Length - 1] == '\0') decipheredString = decipheredString.Substring(0, decipheredString.Length - 1); return decipheredString; }
The ConvertUIntToString function takes advantage of some shifting and bitwise-anding (&) to convert a 32-bit unsigned integer to a string of length 4. Since a character is 1 byte in length, we can
http://www.codeproject.com/KB/mobile/teaencryption.aspx?display=Print
4/3/2009
CodeProject: Tiny Encryption Algorithm (TEA) for the Compact Framework. Free source code a... Page 4 of 5
combine 4 characters to make 4 bytes or 32 bits. Gee, that would hold a 32-bit unsigned integer (uint) nicely! Wow!
private string ConvertUIntToString(uint Input) { System.Text.StringBuilder output = new System.Text.StringBuilder(); output.Append((char)((Input & 0xFF))); output.Append((char)((Input >> 8) & 0xFF)); output.Append((char)((Input >> 16) & 0xFF)); output.Append((char)((Input >> 24) & 0xFF)); return output.ToString(); }
Anding the shifted Input with 0xFF will cause only 1 byte to be returned. The sample code includes a sample application for the .NET Framework and the .NET Compact Framework.
Points of Interest
The original Tiny Encryption Algorithm can be found here. Another site with some information on this algorithm can be found here. In depth article on TEA framework
History
29 Feb 2004 - Added XTEA Algorithm to the article and source code. 19 Feb 2004 - Original Article.
License
This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below. A list of licenses authors might use can be found here
http://www.codeproject.com/KB/mobile/teaencryption.aspx?display=Print
4/3/2009
CodeProject: Tiny Encryption Algorithm (TEA) for the Compact Framework. Free source code a... Page 5 of 5
http://www.codeproject.com/KB/mobile/teaencryption.aspx?display=Print
4/3/2009