Atbash

Simple substitution cipher. Reversed alphabet is all you need here.

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 Z Y X W V U T S R Q P O N M L K J I H G F E D C B A

SR NB MZNV RH HI MY NAME IS

Caesar (shift)

You will have to figure out by how many letters the alphabet is shifted. Pick our some short words (2 or 3 letter) in the encoded text and apply different shifts on them until you get a correct word that translates:

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

Example: PAXG RHN LXM RHNK FBGW MH TVABXOX

LHFXMABGZ, RHN FNLM TEEHP RHNKLXEY

MAX HIIHKMNGBMR MH ZXM BM WHGX.

Try MH: M + 3 = P M + 4 = Q M + 5 = R M + 6 = S M + 7 = T M + 8 = U

H + 3 = K H + 4 = L H + 5 = M H + 6 = N H + 7 = O H + 8 = P

MH + shift 7 => TO

Try shift 7 on another word, like MAX

MAX => shift 7 => THE

We have a match. Decode the rest

Affine

Affine is another shift cipher but uses the formula: (ax + b) mod 26 (mod is typically done with a % sign in code)

Example: a = 19, b = 3

D KBWOD IJBH QJA PGDQNB ZAH HCJAH

Step 1: Encode the frequency table with the forumla. Encode common letters ETAOIN to see their mapping (use the frequency table of English letters on the resource sheet)

E => 419+3=79 % 26 = 1 = B T = (1919+3)%26 = 0 = A ...

This means that the letter B in the encoded text becomes E in the unencoded text. A becomes T:

D KBWOD IJBH QJA PGDQNB ZAH HCJAH E T E T T

Go to the next set of common letters and do those (SRHLD).

Once you use the formula for all letters in the frequency table you can then use those letters to substitute back into the cipher text.

Nihilist

Porta

Example to decrypt: Keyword: BIG Cipher text: UVOYK

Cryptarithm

Baconian

Fractionated Morse

Complete Columnar Transposition

Aristocrats