A Python program for encrypting files by changing every byte to a different one according to a table. The table is generated randomly using a PRNG with a seed that can be specified by the user and works as a key to generate an inverse table that can be used to decrypt the file.
git clone https://github.com/Stachu1/Encrypter.gitEncrypting
python Encrypter.py <file> enc <key>This will create a copy of the file with a .encrypted extension
Decrypting
python Encrypter.py <file.encrypted> dec <key>This will create a decrypted copy of the file
I DO NOT RECOMMEND USING IT FOR STUFF THAT ACCTUALLY NEEDS TO BE ENCRYPTED, AS IT IS PROBABLY NOT SECURE Still it was a fun project ;)