just use tcsetattr directly instead of roundabout way
that drags in mountains of syscall code.
This commit is contained in:
parent
5dc562e449
commit
320666a131
1
go.mod
1
go.mod
|
@ -4,6 +4,5 @@ require (
|
||||||
github.com/gorilla/mux v1.7.1
|
github.com/gorilla/mux v1.7.1
|
||||||
golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5
|
golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5
|
||||||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
|
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
|
||||||
golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e
|
|
||||||
humungus.tedunangst.com/r/go-sqlite3 v1.1.2
|
humungus.tedunangst.com/r/go-sqlite3 v1.1.2
|
||||||
)
|
)
|
||||||
|
|
25
util.go
25
util.go
|
@ -15,6 +15,23 @@
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
|
/*
|
||||||
|
#include <termios.h>
|
||||||
|
|
||||||
|
void
|
||||||
|
termecho(int on)
|
||||||
|
{
|
||||||
|
struct termios t;
|
||||||
|
tcgetattr(1, &t);
|
||||||
|
if (on)
|
||||||
|
t.c_lflag |= ECHO;
|
||||||
|
else
|
||||||
|
t.c_lflag &= ~ECHO;
|
||||||
|
tcsetattr(1, TCSADRAIN, &t);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
import "C"
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"crypto/rand"
|
"crypto/rand"
|
||||||
|
@ -29,7 +46,6 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"golang.org/x/crypto/bcrypt"
|
"golang.org/x/crypto/bcrypt"
|
||||||
"golang.org/x/crypto/ssh/terminal"
|
|
||||||
_ "humungus.tedunangst.com/r/go-sqlite3"
|
_ "humungus.tedunangst.com/r/go-sqlite3"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -72,6 +88,7 @@ func initdb() {
|
||||||
signal.Notify(c, os.Interrupt)
|
signal.Notify(c, os.Interrupt)
|
||||||
go func() {
|
go func() {
|
||||||
<-c
|
<-c
|
||||||
|
C.termecho(1)
|
||||||
fmt.Printf("\n")
|
fmt.Printf("\n")
|
||||||
os.Remove(dbname)
|
os.Remove(dbname)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
|
@ -97,14 +114,16 @@ func initdb() {
|
||||||
log.Print("that's way too short")
|
log.Print("that's way too short")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
C.termecho(0)
|
||||||
fmt.Printf("password: ")
|
fmt.Printf("password: ")
|
||||||
passbytes, err := terminal.ReadPassword(1)
|
pass, err := r.ReadString('\n')
|
||||||
|
C.termecho(1)
|
||||||
fmt.Printf("\n")
|
fmt.Printf("\n")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Print(err)
|
log.Print(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
pass := string(passbytes)
|
pass = pass[:len(pass)-1]
|
||||||
if len(pass) < 6 {
|
if len(pass) < 6 {
|
||||||
log.Print("that's way too short")
|
log.Print("that's way too short")
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue