1
0
mirror of https://github.com/rancher/norman.git synced 2025-09-17 23:59:36 +00:00
Files
norman/vendor/github.com/howeyc/gopass
Darren Shepherd 816c6cf363 Vendor bump
2017-11-10 21:46:33 -07:00
..
2017-11-10 21:46:33 -07:00
2017-11-10 21:46:33 -07:00
2017-11-10 21:46:33 -07:00
2017-11-10 21:46:33 -07:00
2017-11-10 21:46:33 -07:00
2017-11-10 21:46:33 -07:00
2017-11-10 21:46:33 -07: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!