mirror of
https://github.com/BreizhHardware/chiff-affine.git
synced 2026-01-18 16:37:39 +01:00
7 lines
220 B
Python
7 lines
220 B
Python
from crypt_and_decrypt import *
|
|
from find_key import *
|
|
|
|
cryptByteFile('../demo.mp3', 45, 85, '../demoCrypted.mp3')
|
|
print('Crypted')
|
|
decryptByteFile('../demoCrypted.mp3', 45, 85, '../demoDeCrypted.mp3')
|
|
print('Decrypted') |