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