Tags: caesar python crypto 

Rating:

## Challenge Description:
Every CTF starts off with a Caesar cipher, but we're more [classy](https://github.com/TheEquus/angstromCTF2019-Writeups/blob/master/Crypto/classy_cipher.py).

## Solution:
So we are given a python script 'classy_cipher.py' of something similar to a caesar shift.

The most important part of the code is:
```
e += chr((ord(c)+s) % 0xff)

e = ':

Original writeup (https://github.com/TheEquus/angstromCTF2019-Writeups/blob/master/Crypto/Classy%20Cipher%20(20%20points).md).