initial support (hidden) for large files

This commit is contained in:
tcsenpai 2024-02-07 22:37:40 +01:00
parent d1efe68ed0
commit a914f17004
6 changed files with 10 additions and 3 deletions

4
.gitignore vendored
View File

@ -11,7 +11,7 @@ encrypted.txt
*.enc *.enc
*.dec *.dec
x86_64* x86_64*
conda_meta conda-meta
compiler_compat compiler_compat
include include
man man
@ -20,3 +20,5 @@ ssl
cp.png cp.png
*.part *.part
large_file_encryptor.py large_file_encryptor.py
bin
lib

0
file_decryptor.py → file_decryptor Normal file → Executable file
View File

0
file_encryptor.py → file_encryptor Normal file → Executable file
View File

View File

@ -1 +1,2 @@
ByteSplitter
pycrypto pycrypto

2
string_decryptor.py → string_decryptor Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/bin/python
import src.hmacrypt as hmacrypt import src.hmacrypt as hmacrypt
import sys import sys
import os import os

2
string_encryptor.py → string_encryptor Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/bin/python
import src.hmacrypt as hmacrypt import src.hmacrypt as hmacrypt
import sys import sys