OtherPapers.com - Other Term Papers and Free Essays
Search

Cryptography

Essay by   •  September 24, 2011  •  Essay  •  1,038 Words (5 Pages)  •  1,510 Views

Essay Preview: Cryptography

Report this essay
Page 1 of 5

Cryptography, the study of secret writing, has been around for a very long time, from simplistic techniques to sophisticated mathematical techniques. No matter what the form however, there are some underlying things that must be done - encrypt the message and decrypt the encoded message.

One of the earliest and simplest methods ever used to encrypt and decrypt messages is called the Caesar cipher method, used by Julius Caesar during the Gallic war. According to this method, letters of the alphabet are shifted by three, wrapping around at the end of the alphabet. For example,

PlainTest: a b c d e f g h i j k l m n o p q r s t u v w x y z

Caesar shift: d e f g h I j k l m n o p q r s t u v w x y z a b c

When encrypting a message, you take each letter of the message and replace it with its corresponding letter from the shifted alphabet. To decrypt an encoded message, you simply reverse the operation. That is, you take the letter from the shifted alphabet and replace it with the corresponding letter from the plaintext alphabet. Thus the string the quick brown fox becomes wkh txlfn eurzq ira

Another type of cipher is known as Transposition cipher. In this type of cipher, letters in the original message are re-arranged in some methodical way - for instance, reverse the letters in each string. Thus the string the quick brown fox becomes eht kciuq nworb xof

Still yet another cipher method is the Reverser cipher. This method does not only reverses the letters in each word, but as does the Transposition cipher, but it also reverses the result generated from the Transposition cipher. Hence the original message the quick brown fox becomes xof nworb kciuq eht

Class design

Here are three Cryptography methods - Caesar, Transposition and Reverser. They all have something in common. They encrypt and decrypt messages. That is, they take a string of words and translate each word using the encoding algorithm appropriate for that cipher. Thus each class cipher will need polymorphic encode() and decode() methods, which take a word and encodes and decodes it according to the rule of the particular cipher.

From a design perspective, the encrypt() method and the decrypt() methods will be the same for every class. They simply break message into words and have each word encode or decode. However, the encode and decode methods will be different for each cipher. Figure 1 shows a hierarchy of the classes.

Figure 1. Inheritance hierarchy

From the above analysis a partial abstract class Cipher is depicted be by Listing 1.

import java.util.StringTokenizer;

public abstract class Cipher

{

private String message; // The message string

StringBuffer encrypted_message,

decrypted_message;

public Cipher(String text)

{

// Complete definition

}

public final void encrypt()

{

/* The message string is tokenized into individual words, and each word is encoded

by calling the encode method

*/

encrypted_message = new StringBuffer("");

StringTokenizer words = new StringTokenizer(message);

while(words.hasMoreTokens())

{

String s = words.nextToken();

s = encode(s) + " ";

encrypted_message.append(s);

}

}

public final void decrypt(String message)

{

/* The encoded message string is tokenized into individual words, and each word is

encoded by calling the decode method

*/

decrypted_message = new StringBuffer("");

StringTokenizer words = new StringTokenizer(message);

while(words.hasMoreTokens())

{

String s = words.nextToken();

s = decode(s) + " ";

decrypted_message.append(s);

}

}

String getEncodedMessage()

{

return encrypted_message.toString();

}

String getDecodedMessage()

{

return decrypted_message.toString();

}

public abstract String encode(String s);

public abstract String decode(String s);

}

Listing 1. Abstract class Cipher

The class Caesar inherits the abstract class Cipher. This class defines the methods code and decode. The method encode takes a String parameter and returns a String result. It takes each character of the parameter and performs a Caesar shift on the character. That is, a shift with possible wrap around can be coded as follows:

char ch = word.charAt(i);

...

...

Download as:   txt (7.6 Kb)   pdf (115.1 Kb)   docx (12.4 Kb)  
Continue for 4 more pages »
Only available on OtherPapers.com
Citation Generator

(2011, 09). Cryptography. OtherPapers.com. Retrieved 09, 2011, from https://www.otherpapers.com/essay/Cryptography/11969.html

"Cryptography" OtherPapers.com. 09 2011. 2011. 09 2011 <https://www.otherpapers.com/essay/Cryptography/11969.html>.

"Cryptography." OtherPapers.com. OtherPapers.com, 09 2011. Web. 09 2011. <https://www.otherpapers.com/essay/Cryptography/11969.html>.

"Cryptography." OtherPapers.com. 09, 2011. Accessed 09, 2011. https://www.otherpapers.com/essay/Cryptography/11969.html.