Files
Perkuliahan/seb.py
Chizuui 1795fa1c2f First
2025-11-27 00:38:38 +07:00

13 lines
273 B
Python
Executable File

import zlib
import gzip
import rncryptor
cryptor = rncryptor.RNCryptor()
binary = gzip.open("SEB-Slearn.seb", 'rb')
f = binary.read()
binary.close()
#im getting error here
dec_data = (rncryptor.decrypt(f[4:], 'iitu'))
print(zlib.decompress(dec_data,15 + 32))