aes/README.md
2023-08-19 23:36:57 +02:00

12 lines
639 B
Markdown
Executable File

# py_aes
Visited successfully the cryptography lecture and now experimenting a bit with AES in C++ and python.
This short script/library is an approach to understand and implement the AES-128 en-/decryption not only to bit-lists, but also to typical files on your system.
At the moment, files can be en-/decrypted using only the 'electronic-code-book' mode (ECB), with a low security level in python.
Files of each type can be read, since files are opened binary.
Future aspects/goals:
-more modes, like CBC etc.
-additional to files, take whole folders/paths for en-/decryption
-speed up the python script (xx-08-2017: ~10KB/sec)