/gopass

Fork of howeyc/gopass with our custom mods.

Primary LanguageGoISC LicenseISC

getpasswd in Go

Retrieve password from user terminal input without echo

Verified on BSD, Linux, and Windows.

Example:

package main

import "fmt"
import "github.com/howeyc/gopass"

func main() {
	fmt.Printf("Password: ")
	pass := gopass.GetPasswd()
    // Do something with pass
}