5x5 Crypto
60 points Medium

Ever heard of the 5x5 secret message system? If not, basically it's a 5x5 grid with all letters of the alphabet in order, without k because c is represented to make the k sound only. Google it if you need to. A letter is identified by Row-Column. All values are in caps. Try: 1-3,4-4,2-1,{,4-4,2-3,4-5,3-2,1-2,4-3,_,4-5,3-5,}

Flag
Rating 4.13
5
4
3
2
1

Discussion

Protected
0

Medium? Really?

0

easiest challenge on this site, definitely not medium

0

too easy just copy and paste -- > cryptii

0

NICE ONE

1
Protected
0

This is just a easy challenge

0

def decrypt_ciphertext(ciphertext): grid = [ "ABCDE", "FGHIJ", "LMNOP", "QRSTU", "VWXYZ" ] tokens = ciphertext.split(',') plaintext = "" for token in tokens: if "-" in token: row, col = map(int, token.split('-')) plaintext += grid[row - 1][col - 1] else: plaintext += token return plaintext ciphertext = "2-2,2-3,4,1{,4-4,2-3,4-5,3-2,1-2,4-3,_,4-5,3-5," plaintext = decrypt_ciphertext(ciphertext) print("Plaintext:", plaintext)

only foam

-2

cryptii is enough

0

great learned a new cipher

0
Protected
0

Got it...i forgot to put the underscore..

5