Implement & integrate generic SASL authentication support

This should make it possible to implement OAuth and TLS client
certificates authentication.
This commit is contained in:
fox.cpp 2020-02-27 21:40:04 +03:00
parent 0507fb89f4
commit eaaadfa6df
No known key found for this signature in database
GPG key ID: E76D97CCEDE90B6C
9 changed files with 855 additions and 509 deletions

View file

@ -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
}