Files
htb-santa-ctf/crypto/XMASSpirit/decrypt.py
2021-12-03 14:48:10 +01:00

9 lines
116 B
Python

import random
from math import gcd
def decrypt(dt):
mod = 256
f = open('encrypted.bin', 'wb').read()
print(f)