From 65ba0739d5de756a437e0f840649583fa835a560 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Wed, 7 Oct 2015 21:26:17 +0200 Subject: Implement "gocryptfs --passwd" (pasword changing) --- gocryptfs_main/password.go | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 gocryptfs_main/password.go (limited to 'gocryptfs_main/password.go') diff --git a/gocryptfs_main/password.go b/gocryptfs_main/password.go new file mode 100644 index 0000000..821ecb4 --- /dev/null +++ b/gocryptfs_main/password.go @@ -0,0 +1,31 @@ +package main + +import ( + "fmt" + "golang.org/x/crypto/ssh/terminal" + "os" +) + +func readPasswordTwice() string { + fmt.Printf("Password: ") + p1 := readPassword() + fmt.Printf("\nRepeat: ") + p2 := readPassword() + fmt.Printf("\n") + if p1 != p2 { + fmt.Printf("Passwords do not match\n") + os.Exit(ERREXIT_PASSWORD) + } + return p1 +} + +// Get password from terminal +func readPassword() string { + fd := int(os.Stdin.Fd()) + p, err := terminal.ReadPassword(fd) + if err != nil { + fmt.Printf("Error: Could not read password: %v\n", err) + os.Exit(ERREXIT_PASSWORD) + } + return string(p) +} -- cgit v1.2.3