├── .gitignore ├── .travis.yml ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── Makefile ├── README.md ├── fixtures └── signed.attached ├── lookup ├── keybase.go ├── localpgp.go ├── localpgp_test.go ├── lookup.go └── lookup_test.go ├── main.go ├── script.go ├── script_test.go ├── signature.go └── signature_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | files/ 2 | vendor/ 3 | 4 | pipethis* 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/README.md -------------------------------------------------------------------------------- /fixtures/signed.attached: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/fixtures/signed.attached -------------------------------------------------------------------------------- /lookup/keybase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/lookup/keybase.go -------------------------------------------------------------------------------- /lookup/localpgp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/lookup/localpgp.go -------------------------------------------------------------------------------- /lookup/localpgp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/lookup/localpgp_test.go -------------------------------------------------------------------------------- /lookup/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/lookup/lookup.go -------------------------------------------------------------------------------- /lookup/lookup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/lookup/lookup_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/main.go -------------------------------------------------------------------------------- /script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/script.go -------------------------------------------------------------------------------- /script_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/script_test.go -------------------------------------------------------------------------------- /signature.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/signature.go -------------------------------------------------------------------------------- /signature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ellotheth/pipethis/HEAD/signature_test.go --------------------------------------------------------------------------------