summaryrefslogtreecommitdiff
path: root/srv/src/cmd/hash-password/main.go
blob: 47ae1e761cd02b940b61267d0c6bf1c32fb35510 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package main

import (
	"bufio"
	"fmt"
	"os"
	"strings"

	"github.com/mediocregopher/blog.mediocregopher.com/srv/http"
)

func main() {

	fmt.Fprint(os.Stderr, "Password: ")

	line, err := bufio.NewReader(os.Stdin).ReadString('\n')

	if err != nil {
		panic(err)
	}

	fmt.Println(http.NewPasswordHash(strings.TrimSpace(line)))
}