https://github.com/bartwel27/enc
This script provides a simple encryption and decryption tool for text. It can encrypt readable characters into unreadable characters, and vice versa. This can be useful for secure communication, as only those with the decryption key can read the encrypted text
https://github.com/bartwel27/enc
Last synced: 8 months ago
JSON representation
This script provides a simple encryption and decryption tool for text. It can encrypt readable characters into unreadable characters, and vice versa. This can be useful for secure communication, as only those with the decryption key can read the encrypted text
- Host: GitHub
- URL: https://github.com/bartwel27/enc
- Owner: Bartwel27
- License: gpl-3.0
- Created: 2024-03-21T11:36:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-28T09:48:33.000Z (over 1 year ago)
- Last Synced: 2024-12-31T09:16:24.992Z (9 months ago)
- Language: Python
- Homepage:
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# enc
This script provides a simple encryption and decryption tool for text. It can encrypt readable characters into unreadable characters, and vice versa. This can be useful for secure communication, as only those with the decryption key can read the encrypted text. The script uses a substitution cipher, replacing each character with a corresponding encrypted character. To encrypt a string, simply input the text and the script will output the encrypted version. To decrypt, input the encrypted text and the script will output the original readable text###### E.G
encrypted:
```
=[??:#-:@?×
```
decrypted:
```
hello world
```## Installation
```
pkg install wget
``````
pip install termcolor
```
##### version 0.1
```
wget https://bartwel27.github.io/enc/v0.1/enc.py
```> [!NOTE]
> Make sure you use the latest version available.