Benefits of Using this Webapp
Simple
No knowledge of encrypting, decrypting, or the terminal is needed
Easy to Use
No need to download external clients or interact with package managers
Platform Independent
Works anywhere in any web browser
Offline Usage
This webapp does not need internet to work
Secure
Uses the PGP standard which has gone through decades of improvements and testing
Encrypting and Decrypting on the Terminal
First, you must install a PGP client on your computer. GNU's implementation, GPG, is quite popular and available on most common platforms.
Here is how to encrypt files on the terminal
$ gpg --symmetric file.txt
You are then asked to enter the encryption passphrase.
Decrypting is similar; just pass the encrypted file to gpg
$ gpg file.txt.pgp
And enter in the passphrase
Disclaimer
You use this software at your own risk. I, Peter Ryszkiewicz, am not responsible for any misuse or abuse of this software. See the MIT License below for more details.
MIT License
Copyright (c) 2017 Peter Ryszkiewicz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.