mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 05:57:39 +03:00
Implement & integrate generic SASL authentication support
This should make it possible to implement OAuth and TLS client certificates authentication.
This commit is contained in:
parent
0507fb89f4
commit
eaaadfa6df
9 changed files with 855 additions and 509 deletions
|
@ -14,3 +14,21 @@ var (
|
|||
type PlainAuth interface {
|
||||
AuthPlain(username, password string) ([]string, error)
|
||||
}
|
||||
|
||||
// SASLProvider is the interface implemented by modules and used by protocol
|
||||
// endpoints that rely on SASL framework for user authentication.
|
||||
//
|
||||
// This actual interface is only used to indicate that the module is a
|
||||
// SASL-compatible auth. provider. For each unique value returned by
|
||||
// SASLMechanisms, the module object should also implement the coresponding
|
||||
// mechanism-specific interface.
|
||||
//
|
||||
// *Rationale*: There is no single generic interface that would handle any SASL
|
||||
// mechanism while permiting the use of a credentials set estabilished once with
|
||||
// multiple auth. providers at once.
|
||||
//
|
||||
// Per-mechanism interfaces:
|
||||
// - PLAIN => PlainAuth
|
||||
type SASLProvider interface {
|
||||
SASLMechanisms() []string
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue