coursera-cryptography1 icon indicating copy to clipboard operation
coursera-cryptography1 copied to clipboard

Assignments for Coursera's Cryptography I course by Dan Boneh

Results 2 coursera-cryptography1 issues
Sort by recently updated
recently updated
newest added

Hi thanks for the question and the quiz do you also have the video. Thank you

``` def decrypt(msg, key): key = base64.b16decode(key, True) msg = base64.b16decode(msg, True) init_val = msg[:s] msg = msg[s:] ctr = int(base64.b16encode(init_val),16) cipher = AES.new(key, AES.MODE_ECB) pt = "" for i...