ceph-csi/vendor/github.com/howeyc/gopass
2018-12-19 15:29:25 +01:00
..
.travis.yml added vendors 2018-12-19 15:29:25 +01:00
LICENSE.txt added vendors 2018-12-19 15:29:25 +01:00
OPENSOLARIS.LICENSE added vendors 2018-12-19 15:29:25 +01:00
pass_test.go added vendors 2018-12-19 15:29:25 +01:00
pass.go added vendors 2018-12-19 15:29:25 +01:00
README.md added vendors 2018-12-19 15:29:25 +01:00
terminal_solaris.go added vendors 2018-12-19 15:29:25 +01:00
terminal.go added vendors 2018-12-19 15:29:25 +01:00

getpasswd in Go GoDoc Build Status

Retrieve password from user terminal or piped input without echo.

Verified on BSD, Linux, and Windows.

Example:

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!