A tool for encoding and decoding text with a passphrase. Encrypt text into a secure format and decrypt it later using the same key.
Official test UI: diec-test-gui
pip install diec
To encode text, use the encode-text
command:
python cli.py encode-text "This is the text to encode" --passphrase "your_passphrase"
This will encrypt the provided text using the given passphrase.
To decode previously encrypted text, use the decode-text
command:
python cli.py decode-text --passphrase "your_passphrase"
This will decrypt the text and print the original message, using the same passphrase used during encryption.
Encodes the provided text with a passphrase.
python cli.py encode-text <text> --passphrase <passphrase>
Decodes the previously encoded text using the provided passphrase.
python cli.py decode-text --passphrase <passphrase>
MIT License. See LICENSE for details.
Author: Eldritchy
Email: eldritchy.help@gmail.com
GitHub: https://github.com/Eldritchyl