7 Commits

Author SHA1 Message Date
Russ Cox
7b9c9198d5 utils: make repo safe for "go build ./..."
This directory contains two separate helper programs
that can be run with "go run". It's not possible to cd into
the directory and run "go build", because there are two
different Go source files defining main.main.

The canonical way to indicate this is to put a "// +build ignore"
build tag at the top of such helper programs.
Then they can still be run by

	go run decode_auth.go
	go run test_auth.go

but will not be considered by "cd utils; go build" nor by
commands like "go build ./..." or "go test ./..." in the
root of the repo.
2018-05-24 22:55:54 -04:00
Brian Cully
b00ec39bbd Use golang's log, so we don't need log4go. 2015-10-30 00:47:37 +00:00
Conor Hunt
af256c1a87 move messages out of unecessary messages package and in to ntlm package 2013-07-23 15:27:25 -05:00
Matthew Kanwisher
85f6623a22 making things more go get friendly 2013-05-21 16:07:12 -04:00
Matthew Kanwisher
c71d542d90 minor tweaks for ntlmv1 2013-04-15 17:55:10 -04:00
Matthew Kanwisher
413d3231d7 hacking up the ntlm tests to work 2013-04-15 17:43:20 -04:00
Conor Hunt
7d7e8661ae add utility for testing authentication 2013-03-11 16:34:48 -04:00