About

rgbCTF 2020 Crypto - N-AES

N-AES Description What if I encrypt something with AES multiple times? nc challenge.rgbsec.xyz 34567 ~qpwoeirut#5057 Files n_aes.py import binascii from base64 import b64encode, b64decode from Crypto.Cipher import AES from Crypto.Util.Padding import pad, unpad from os import urandom from random import seed, randint BLOCK_SIZE = 16 d...

Read more