├── .gitignore ├── LICENSE ├── README.md └── src ├── gpg2hs └── main.go └── hs2gpg └── main.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfix/gpg2hs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfix/gpg2hs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfix/gpg2hs/HEAD/README.md -------------------------------------------------------------------------------- /src/gpg2hs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfix/gpg2hs/HEAD/src/gpg2hs/main.go -------------------------------------------------------------------------------- /src/hs2gpg/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bfix/gpg2hs/HEAD/src/hs2gpg/main.go --------------------------------------------------------------------------------