Create and edit aes encrypted text files in a editor like fashion instead of command line openssl. Exclusively for MacOs, Windows and Linux users.
Key Features:
- Multiplatform (MacOs, Windows, Linux)
- Hardened encryption using Advanced Encryption Standard (AES) with 256-bit key length in Cipher Block Chaining mode (AES256-CBC), same as in the Microsoft Apps Suite AES256-CBC support for Microsoft 365
- Network secure, 100% local. No data is transfered over network.
- Fast and simple, only plain text is supported
- Interoperability by design, compatible with other implementations of aes-256-cbc, no vendor lock.
- Daily used in IT community, fully maintained.
Download encryption text editor's latest version from Releases page. Enjoy.
Following operations are supported:
- creating and saving new encrypted file
- opening existing encrypted file
- modifying and saving encrypted file
- searching/replacing file contents
SecureEdit is fully compatible (two way interchangeable) with openssl aes 256 cbc
encrypted files:
Command line decrypt:
openssl enc -d -aes-256-cbc -in my.secret
Command line encrypt:
openssl enc -aes-256-cbc -salt -in my.secret.txt -out my.secret
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
- 1.1.8 CX fixes
- 1.1.5 Remote file support, you can securely store files in the cloud instead on local disk
- 1.1.0 HTML support (tables, formatting)
- 1.0.11 Stabilization tweaks, docs update
- 1.0.9 Search & Replace added
- 1.0.6 Minor bugfixing
- 1.0.0 Initial version