// +build ignore /* Example application using Basic auth Build with: go build basic.go */ package main import ( auth ".." "fmt" "net/http" ) func Secret(user, realm string) string { if user == "john" { // password is "hello" return "$1$dlPL2MqE$oQmn16q49SqdmhenQuNgs1" } return "" } func handle(w http.ResponseWriter, r *auth.AuthenticatedRequest) { fmt.Fprintf(w, "

Hello, %s!

", r.Username) } func main() { authenticator := auth.NewBasicAuthenticator("example.com", Secret) http.HandleFunc("/", authenticator.Wrap(handle)) http.ListenAndServe(":8080", nil) }