Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Audiences ¶
type Audiences []string
Audiences is a container for the Audiences of a token.
func AudiencesFrom ¶
AudiencesFrom returns a request's expected audiences stored in the request context.
func (Audiences) Has ¶
Has checks if Audiences contains a specific audiences.
type Request ¶
Request attempts to extract authentication information from a request and returns a Response or an error if the request could not be checked.
type RequestFunc ¶
RequestFunc is a function that implements the Request interface.
type Response ¶
type Response struct { // Audiences is the set of audiences the authenticator was able to validate // the token against. If the authenticator is not audience aware, this field // will be empty. Audiences Audiences // User is the UserInfo associated with the authentication context. User user.Info }
Response is the struct returned by authenticator interfaces upon successful authentication. It contains information about whether the authenticator authenticated the request, information about the context of the authentication, and information about the authenticated user.
type Token ¶
type Token interface {
AuthenticateToken(ctx context.Context, token string) (*Response, bool, error)
}
Token checks a string value against a backing authentication store and returns a Response or an error if the token could not be checked.
type TokenFunc ¶
TokenFunc is a function that implements the Token interface.