-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpassword.go
59 lines (51 loc) · 1.62 KB
/
password.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package readpass
// This file contains utility functions for decrypting password protecting keys
// and password protecting keys.
import (
"log"
"os"
"golang.org/x/crypto/ssh/terminal"
)
func SSHPasswordPrompt(prompt string) (password string, err error) {
state, err := terminal.MakeRaw(0)
if err != nil {
log.Fatal(err)
}
defer terminal.Restore(0, state)
term := terminal.NewTerminal(os.Stdout, ">")
password, err = term.ReadPassword(prompt)
if err != nil {
log.Fatal(err)
}
return
}
// The PasswordPrompt function is the function that is called to prompt the user for
// a password.
var PasswordPrompt func(prompt string) (password string, err error) = DefaultPasswordPrompt
// The PasswordPromptBytes function is the same as PasswordPrompt,
// but returning a byte slice instead.
var PasswordPromptBytes func(prompt string) (password []byte, err error) = DefaultPasswordPromptBytes
// DefaultPasswordPrompt is a simple (but echoing) password entry function
// that takes a prompt and reads the password.
func DefaultPasswordPrompt(prompt string) (password string, err error) {
state, err := terminal.MakeRaw(0)
if err != nil {
log.Fatal(err)
}
defer terminal.Restore(0, state)
term := terminal.NewTerminal(os.Stdout, ">")
password, err = term.ReadPassword(prompt)
if err != nil {
log.Fatal(err)
}
return
}
// DefaultPasswordPrompt is a simple (but echoing) password entry function
// that takes a prompt and reads the password.
func DefaultPasswordPromptBytes(prompt string) (password []byte, err error) {
passwordString, err := PasswordPrompt(prompt)
if err == nil {
password = []byte(passwordString)
}
return
}