Created
April 4, 2013 10:03
-
-
Save lmammino/5309230 to your computer and use it in GitHub Desktop.
"Decrypt Document" integration for Gedit (compatible with textmate text encryption/decription)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
pw=`zenity --entry --hide-text --title="Encrypt document" --text="Insert key"`; | |
openssl enc -d -aes128 -base64 -pass "pass:$pw"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment