Sandicus / SimpleCrypt

a simple set of crypt problems.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SimpleCrypt

a simple set of crypt problems.

Part 1

Create a few ciphers. Use String inside of your classes.

  • Main.ROT13 - take the 26 letters of the alphabet and create a String <- crypt(String) method in the Main.ROT13 class
    • crypt("Why did the chicken cross the road?") should produce "Jul qvq gur puvpxra pebff gur ebnq?"
    • crypt("Gb trg gb gur bgure fvqr!") should produce "To get to the other side!"
  • Make a constructor that takes two arguments to set the cipher correspondence. Main.ROT13 superSecure = new Main.ROT13("a","m");
    • this defines the SHIFT of the two Character arrays.
  • Caesar - make a subclass of Main.ROT13 that implements the famous caesar cipher.
  • Create you own cipher, using a different set of

Part 2

Make a method that reads a textfile (sonnet18.txt), encrypts it, and writes it back out to a different file (sonnet18.enc) Prove that when you read in (sonnet18.enc), run the same crypt again, and prove that it produces the same original text.

Explanation

Main.ROT13 ("rotate by 13 places", sometimes hyphenated ROT-13) is a simple letter substitution cipher that replaces a letter with the 13th letter after it, in the alphabet. Main.ROT13 is a special case of the Caesar cipher, developed in ancient Rome.

Because there are 26 letters (2×13) in the basic Latin alphabet, Main.ROT13 is its own inverse; that is, to undo Main.ROT13, the same algorithm is applied, so the same action can be used for encoding and decoding. The algorithm provides virtually no cryptographic security, and is often cited as a canonical example of weak encryption.

Main.ROT13 is used in online forums as a means of hiding spoilers, punchlines, puzzle solutions, and offensive materials from the casual glance. Main.ROT13 has been described as the "Usenet equivalent of a magazine printing the answer to a quiz upside down".[2] Main.ROT13 has inspired a variety of letter and word games on-line, and is frequently mentioned in newsgroup conversations.

Applying Main.ROT13 to a piece of text merely requires examining its alphabetic characters and replacing each one by the letter 13 places further along in the alphabet, wrapping back to the beginning if necessary.[3] A becomes N, B becomes O, and so on up to M, which becomes Z, then the sequence continues at the beginning of the alphabet: N becomes A, O becomes B, and so on to Z, which becomes M. Only those letters which occur in the English alphabet are affected; numbers, symbols, whitespace, and all other characters are left unchanged.

String s = "we hold these truths to be self evident";

Main.ROT13

if (crypMain.ROT13pt(s)) == s) {
  return true;
}

//if anything else, you must use the encrypt/decrypt pair.

In other words, two successive applications of ROT13 restore the original text (in maMain.ROT13tics, this is sometimes called an involution; in cryptography, a reciprocal cipher).

The transformation can be done using a lookup table, such as the following:

// for ROT13('a', 'n')
Input	ABCDEFGHIJKLMNOPMain.ROT13VWXYZ abcdefghijklmnopqrstuvwxyz
Output	NOPQRSTUVWXYZABCDEFGHIJKLM nopqrstuvwxyzabcdefghijklm

// for ROT13('a', 'd')
Input	ABCDEFGHIJKLMNOPMain.ROT13VWXYZ abcdefghijklmnopqrstuvwxyz
Output	DEFGHIJKLMNOPQRSTUVWXYZABC defghijklmnopqrstuvwxyzabc

For example, in the following joke, the punchline has been obscured by ROT13:

Why did the chicken cross Main.ROT13oad?
Gb trg gb gur bgure fvqr!

Transforming the entire text via ROT13 form, the answer to the joke is Main.ROT13led:

Jul qvq gur puvpxra pebff gur ebnq?
To get to the other side!

About

a simple set of crypt problems.

License:MIT License


Languages

Language:Java 100.0%