mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 14:07:38 +03:00
Authentication provider module is responsible only for authentication. Nothing more. Access control (authorization) should be kept separate.
16 lines
450 B
Go
16 lines
450 B
Go
package module
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrUnknownCredentials should be returned by auth. provider if supplied
|
|
// credentials are valid for it but are not recognized (e.g. not found in
|
|
// used DB).
|
|
ErrUnknownCredentials = errors.New("unknown credentials")
|
|
)
|
|
|
|
// PlainAuth is the interface implemented by modules providing authentication using
|
|
// username:password pairs.
|
|
type PlainAuth interface {
|
|
AuthPlain(username, password string) error
|
|
}
|