Ejemplo n.º 1
0
def __main__():
    print(Crypto.decECB(encryptionOracle))
Ejemplo n.º 2
0
from ch12 import encryptionOracle
from Tools import Binary, Crypto
import random

randomPrefix = Binary().random(random.randrange(0, 30 * 8, 8))


def wrapper(data):
    return encryptionOracle(randomPrefix + data)


print(Crypto.decECB(wrapper))