cryptopals

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit d266fe16366204c7f57e0bf85929ed6c480cdaef
parent 36dad23890cfeda94e3d25f4e2b3e4758e126977
Author: mpizzzle <michael770211@gmail.com>
Date:   Fri,  6 Oct 2017 14:56:03 +0100

set 1 challenge 1 complete

Diffstat:
Mset1/hex_to_base64.py | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/set1/hex_to_base64.py b/set1/hex_to_base64.py @@ -0,0 +1,5 @@ +import sys + +hex = "49276d206b696c6c696e6720796f757220627261696e206c696b65206120706f69736f6e6f7573206d757368726f6f6d" + +print hex.decode("hex").encode("base64")+ \ No newline at end of file