sshenc will make encrypted file by using ssh public key.
$ gem install sshenc
Encrypt:
$ sshenc file id_rsa.pub
Decrypt:
$ sshenc [-k privatekey] file.sshenc.tar
By default, privatekey is using ~/.ssh/id_rsa
$ sshenc hoge.txt.sshenc.tar
If you want to change the privatekey, please use the option.
$ sshenc -k path/to/id_rsa hoge.txt.sshenc.tar
- 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
) - Create new Pull Request