Skip to content

Latest commit

 

History

History

dummycrypt

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

dummycrypt

Problem

Welcome to roll your own crypto, it's exactly as good as it sounds

challenge.py

Solution

We are given the plaintext and ciphertext. Therefore, the logical assumption is that we need to find the key which was used to encrypt the plaintext into the ciphertext. In order to do that, we have to reverse the encrypt() function given.

Python script