├── .gitignore ├── Encryptor&Decryptor └── Encryptor&Decryptor.py ├── LICENSE ├── README.md ├── README_TCH.md ├── image ├── UI.png ├── test_word.png ├── test_word_en.png └── test_word_en_de.png ├── sample ├── sample.txt ├── sample_en.txt └── sample_en_de.txt └── test_code ├── decode_and_encode_test.py ├── encrypt_and_decrypt.py ├── save_and_load.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/.gitignore -------------------------------------------------------------------------------- /Encryptor&Decryptor/Encryptor&Decryptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/Encryptor&Decryptor/Encryptor&Decryptor.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/README.md -------------------------------------------------------------------------------- /README_TCH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/README_TCH.md -------------------------------------------------------------------------------- /image/UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/image/UI.png -------------------------------------------------------------------------------- /image/test_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/image/test_word.png -------------------------------------------------------------------------------- /image/test_word_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/image/test_word_en.png -------------------------------------------------------------------------------- /image/test_word_en_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/image/test_word_en_de.png -------------------------------------------------------------------------------- /sample/sample.txt: -------------------------------------------------------------------------------- 1 | Hello world 2 | I am so tired -------------------------------------------------------------------------------- /sample/sample_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/sample/sample_en.txt -------------------------------------------------------------------------------- /sample/sample_en_de.txt: -------------------------------------------------------------------------------- 1 | Hello world 2 | I am so tired -------------------------------------------------------------------------------- /test_code/decode_and_encode_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/test_code/decode_and_encode_test.py -------------------------------------------------------------------------------- /test_code/encrypt_and_decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/test_code/encrypt_and_decrypt.py -------------------------------------------------------------------------------- /test_code/save_and_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/test_code/save_and_load.py -------------------------------------------------------------------------------- /test_code/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JingShing/Encryptor-Decryptor/HEAD/test_code/test.py --------------------------------------------------------------------------------