You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
716 B
28 lines
716 B
7 years ago
|
# getpasswd in Go [![GoDoc](https://godoc.org/github.com/howeyc/gopass?status.svg)](https://godoc.org/github.com/howeyc/gopass) [![Build Status](https://secure.travis-ci.org/howeyc/gopass.png?branch=master)](http://travis-ci.org/howeyc/gopass)
|
||
|
|
||
|
Retrieve password from user terminal or piped input without echo.
|
||
|
|
||
|
Verified on BSD, Linux, and Windows.
|
||
|
|
||
|
Example:
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import "fmt"
|
||
|
import "github.com/howeyc/gopass"
|
||
|
|
||
|
func main() {
|
||
|
fmt.Printf("Password: ")
|
||
|
|
||
|
// Silent. For printing *'s use gopass.GetPasswdMasked()
|
||
|
pass, err := gopass.GetPasswd()
|
||
|
if err != nil {
|
||
|
// Handle gopass.ErrInterrupted or getch() read error
|
||
|
}
|
||
|
|
||
|
// Do something with pass
|
||
|
}
|
||
|
```
|
||
|
|
||
|
Caution: Multi-byte characters not supported!
|