Free online encryption and decryption tool.
Explore Encipherr »
Encipherr is a web app that provides powerful encryption of data. It is fast and free, and it is open source. It uses no ads, and it is the only easy way to encrypt your data in any web browser.
Encipherr uses AES encryption algorithm. AES is both fast, and cryptographically strong. It is a good default choice for encryption and it's considered one of the strongest algorithms available.
Visit Encipherr website
or install project files and run it locally:
git clone https://github.com/Oussama1403/Encipherr
The project directory will contain:
.
├── CHANGELOG.md
├── LICENSE.txt
├── main.py
├── README.md
├── requirements.txt
├── screenshot.png
└── src
├── app.py
├── config.py
├── db.sqlite3
├── modules.py
├── robots.txt
├── routes.py
├── static
│ ├── assets
│ │ └── logo.png
│ ├── css
│ │ └── style.css
│ ├── easter-egg
│ │ ├── egg.html
│ │ └── egg.js
│ ├── js
│ │ ├── ajaxcall.js
│ │ └── upload.js
│ ├── pwa
│ │ ├── 512x512-blue.png
│ │ ├── 512x512.png
│ │ ├── app.js
│ │ ├── manifest.json
│ │ └── offline.html
│ └── uploads
├── sw.js
└── templates
├── about.html
├── base.html
├── home.html
├── page-404.html
├── page-500.html
└── privacy.html
9 directories, 30 files
install modules:
pip install -r requirements.txt
then run the server by typing in your terminal:
python3 main.py
Read the latest notable changes made to a Encipherr here
- Custom encryption key (password) (Done) ✔️.
- More encryption algorithms.
- Offline usage (semi-ready).
A command line interface (CLI) version of Encipherr for the offline usage. github.com/Oussama1403/Encipherr-CLI
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to test your changes.