Some 3DES with ECB and CBC modes data processing examples. (VARIANT key exchange method example is added).
NOTE: Scripts tested in Python 3.9 and 3.11 versions.
You can use the python package venv
(virtualenv).
- On Windows
- In cmd:
venv\Scripts\activate.bat
- In PowerShell:
venv\Scripts\Activate.ps1
- In cmd:
- On Linux and MacOS:
source venv/bin/activate
NOTE: You can set a custom venv folder name at Step 2.
Use pip
command and the requirements.txt
file:
pip install -r requirements.txt
NOTE: cryptography
library dependencie is used to Cryptography applications.