Skip to content

Eldritchy/diec

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

95 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

diec

License PyPi Contributors badge Downloads

pip install diec

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

Installation

pip install diec

Usage

Encrypt Text

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.

Decrypt Text

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.

CLI Commands

encode-text

Encodes the provided text with a passphrase.

python cli.py encode-text <text> --passphrase <passphrase>

decode-text

Decodes the previously encoded text using the provided passphrase.

python cli.py decode-text --passphrase <passphrase>

License

MIT License. See LICENSE for details.


Author: Eldritchy
Email: eldritchy.help@gmail.com
GitHub: https://github.com/Eldritchyl