26 lines
403 B
Go
26 lines
403 B
Go
// +build linux darwin
|
|
|
|
package password
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"golang.org/x/crypto/ssh/terminal"
|
|
)
|
|
|
|
func read(f *os.File) (string, error) {
|
|
fd := int(f.Fd())
|
|
if !terminal.IsTerminal(fd) {
|
|
return "", fmt.Errorf("File descriptor %d is not a terminal", fd)
|
|
}
|
|
|
|
oldState, err := terminal.MakeRaw(fd)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
defer terminal.Restore(fd, oldState)
|
|
|
|
return readline(f)
|
|
}
|