2016-02-21 10:31:53 +00:00
|
|
|
// ReadPassword for OSes which are not supported by golang.org/x/crypto/ssh/terminal
|
|
|
|
// See https://github.com/golang/go/issues/14441 - plan9
|
|
|
|
// https://github.com/golang/go/issues/13085 - solaris
|
|
|
|
|
2021-09-09 12:25:25 +00:00
|
|
|
//go:build solaris || plan9
|
2016-02-21 10:31:53 +00:00
|
|
|
// +build solaris plan9
|
|
|
|
|
2018-01-12 16:30:54 +00:00
|
|
|
package config
|
2016-02-21 10:31:53 +00:00
|
|
|
|
|
|
|
// ReadPassword reads a password with echoing it to the terminal.
|
|
|
|
func ReadPassword() string {
|
|
|
|
return ReadLine()
|
|
|
|
}
|