mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
30 lines
624 B
Go
30 lines
624 B
Go
package auth
|
|
|
|
import "github.com/sagernet/sing/common"
|
|
|
|
type User struct {
|
|
Username string
|
|
Password string
|
|
}
|
|
|
|
type Authenticator struct {
|
|
userMap map[string][]string
|
|
}
|
|
|
|
func NewAuthenticator(users []User) *Authenticator {
|
|
if len(users) == 0 {
|
|
return nil
|
|
}
|
|
au := &Authenticator{
|
|
userMap: make(map[string][]string),
|
|
}
|
|
for _, user := range users {
|
|
au.userMap[user.Username] = append(au.userMap[user.Username], user.Password)
|
|
}
|
|
return au
|
|
}
|
|
|
|
func (au *Authenticator) Verify(username string, password string) bool {
|
|
passwordList, ok := au.userMap[username]
|
|
return ok && common.Contains(passwordList, password)
|
|
}
|