Support for NTLM authentication added (#109)

* Support for NTLM authentication added

To support NTLM authentication, a database is added as an authentication source.
Currently, only the configuration file is supported as a database.
Database authentication supports Basic and NTLM authentication protcols.

ServerConfig.BasicAuthEnabled renamed to LocalEnabled as Basic auth can be used with NTLM or Local.
This commit is contained in:
m7913d 2024-04-24 14:12:41 +02:00 committed by GitHub
parent 7472c7b2c1
commit 372dc43ef2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 947 additions and 64 deletions

5
cmd/auth/database/database.go Executable file
View file

@ -0,0 +1,5 @@
package database
type Database interface {
GetPassword (username string) string
}