Rating: 3.0

# RC3Cipher

## How this binary works?

TL;DW. But if you really want to know, see [Writeup from team SwissCyberStorm](https://github.com/swisscyberstorm/ctf_write_ups/blob/master/2016/rc3ctf/reversing/rc3cipher/README.md)

## How this script works?

This cipher behaves like a stream cipher, the only things affects stream key is biggest byte in the plaintext.

So we enumerate all possible biggest byte with enough length to extract stream key, then try to decrypt flag.

Original writeup (https://gist.github.com/Inndy/eca85d80f9e03260d35bff5c1c22b6b1).