Documentation ¶
Index ¶
- type Provider
- func NewAuthDisabled() Provider
- func NewAuthenticationTLS(certificatePath string, privateKeyPath string) Provider
- func NewAuthenticationTLSWithParams(params map[string]string) Provider
- func NewAuthenticationToken(token string) Provider
- func NewAuthenticationTokenFromFile(tokenFilePath string) Provider
- func NewAuthenticationTokenWithParams(params map[string]string) (Provider, error)
- func NewProvider(name string, params string) (Provider, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Provider ¶
type Provider interface { // Init the authentication provider. Init() error // Name func returns the identifier for this authentication method. Name() string // return a client certificate chain, or nil if the data are not available GetTLSCertificate() (*tls.Certificate, error) // GetData returns the authentication data identifying this client that will be sent to the broker. GetData() ([]byte, error) io.Closer }
Provider is a interface of authentication providers.
func NewAuthDisabled ¶
func NewAuthDisabled() Provider
NewAuthDisabled return a interface of Provider
func NewAuthenticationTLS ¶
NewAuthenticationTLS initialize the authentication provider
func NewAuthenticationTLSWithParams ¶
NewAuthenticationTLSWithParams initialize the authentication provider with map param.
func NewAuthenticationToken ¶
NewAuthenticationToken return a interface of Provider with a string token.
func NewAuthenticationTokenFromFile ¶
NewAuthenticationTokenFromFile return a interface of a Provider with a string token file path.
func NewAuthenticationTokenWithParams ¶
NewAuthenticationTokenWithParams return a interface of Provider with string map.
func NewProvider ¶
NewProvider get/create an authentication data provider which provides the data that this client will be sent to the broker. Some authentication method need to auth between each client channel. So it need the broker, who it will talk to.