terraform-provider-google/vendor/github.com/bgentry/speakeasy
Paddy 961c878e0d Switch to using Go modules. (#2679)
Switch to using Go modules.

This migrates our vendor.json to use Go 1.11's modules system, and
replaces the vendor folder with the output of go mod vendor.

The vendored code should remain basically the same; I believe some
tree shaking of packages and support scripts/licenses/READMEs/etc.
happened.

This also fixes Travis and our Makefile to no longer use govendor.
2018-12-20 17:22:22 -08:00
..
.gitignore Switch to using Go modules. (#2679) 2018-12-20 17:22:22 -08:00
LICENSE Revendor hashicorp/terraform (#697) 2017-11-07 11:29:51 -08:00
LICENSE_WINDOWS Revendor hashicorp/terraform (#697) 2017-11-07 11:29:51 -08:00
Readme.md Revendor hashicorp/terraform (#697) 2017-11-07 11:29:51 -08:00
speakeasy_unix.go Revendor hashicorp/terraform (#697) 2017-11-07 11:29:51 -08:00
speakeasy_windows.go Revendor hashicorp/terraform (#697) 2017-11-07 11:29:51 -08:00
speakeasy.go Revendor hashicorp/terraform (#697) 2017-11-07 11:29:51 -08:00

Speakeasy

This package provides cross-platform Go (#golang) helpers for taking user input from the terminal while not echoing the input back (similar to getpasswd). The package uses syscalls to avoid any dependence on cgo, and is therefore compatible with cross-compiling.

GoDoc

Unicode

Multi-byte unicode characters work successfully on Mac OS X. On Windows, however, this may be problematic (as is UTF in general on Windows). Other platforms have not been tested.

License

The code herein was not written by me, but was compiled from two separate open source packages. Unix portions were imported from gopass, while Windows portions were imported from the CloudFoundry Go CLI's Windows terminal helpers.

The license for the windows portion has been copied exactly from the source (though I attempted to fill in the correct owner in the boilerplate copyright notice).