mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
10f27e2ff2
warn users when they enter passwords with leading/trailing whitespaces Updated config_test.go, removing deprecated test case and updated TestReveal
26 lines
577 B
Go
26 lines
577 B
Go
// ReadPassword for OSes which are 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
|
|
|
|
// +build !solaris,!plan9
|
|
|
|
package fs
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
|
|
"golang.org/x/crypto/ssh/terminal"
|
|
)
|
|
|
|
// ReadPassword reads a password without echoing it to the terminal.
|
|
func ReadPassword() string {
|
|
line, err := terminal.ReadPassword(int(os.Stdin.Fd()))
|
|
fmt.Fprintln(os.Stderr)
|
|
if err != nil {
|
|
log.Fatalf("Failed to read password: %v", err)
|
|
}
|
|
return string(line)
|
|
}
|