You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
914 B
Markdown
16 lines
914 B
Markdown
7 months ago
|
McEliece cryptosystem implementation by vovuas2003
|
||
8 months ago
|
|
||
7 months ago
|
Required Python libraries: numpy, galois.
|
||
7 months ago
|
|
||
1 month ago
|
UPDATE: version 2 is available. Check cryptosystem_core_v2 and McEliece_console_v2.
|
||
|
|
||
7 months ago
|
All cryptosystem functions are implemented in cryptosystem_core.py, just import it into your project and enjoy!
|
||
7 months ago
|
For example, I coded a console menu (that works with text in txt files and also with any files in binary mode) and a GUI app (for text encryption).
|
||
8 months ago
|
|
||
7 months ago
|
It is possible to build portable exe with pyinstaller and run code on a computer that does not have Python installed.
|
||
|
But it is NOT compilation, so exe file will be quite large.
|
||
8 months ago
|
|
||
7 months ago
|
The pdf presentation in Russian contains a bit of theory about the Mceliece cryptosystem.
|
||
|
icon.ico is an optional file for pyinstaller
|
||
1 month ago
|
old_portable.py can support another order of galois field, but saves raw integers and does not specify utf-8 encoding for strings and txt files
|