This commit is contained in:
aler9
2020-07-19 18:01:49 +02:00
parent 511d109e8d
commit e5d15bc157
6 changed files with 14 additions and 13 deletions

View File

@@ -20,10 +20,10 @@ func md5Hex(in string) string {
type AuthMethod int
const (
// basic authentication method
// Basic authentication method
Basic AuthMethod = iota
// digest authentication method
// Digest authentication method
Digest
)