Documentation ¶
Index ¶
- Variables
- func Decrypt(ciphertext []byte, key []byte) ([]byte, error)
- func Encrypt(plaintext []byte, key []byte) ([]byte, error)
- func ForbiddenHTTPError(description string) error
- func UnauthorizedHTTPError(description string) error
- type Authenticator
- type Authorizer
- type Decision
- type Encrypter
- type KeyFetcher
- type KeySetter
- type TokenData
- type TokenVerifier
- type TwoLayerEncrypter
Constants ¶
This section is empty.
Variables ¶
var ErrUserNotFound = errors.New("user identity must be provided when allowing authentication")
ErrUserNotFound error when authentication passed but no user found
Functions ¶
func ForbiddenHTTPError ¶
ForbiddenHTTPError returns HTTPError 403 with some description
func UnauthorizedHTTPError ¶
UnauthorizedHTTPError returns HTTPError 401 with some description
Types ¶
type Authenticator ¶
type Authenticator interface { // Authenticate returns information about the user if security is successful, a bool specifying // whether the authenticator ran or not and an error if one occurs Authenticate(req *http.Request) (*web.UserContext, Decision, error) }
Authenticator extracts the authenticator information from the request and returns information about the current user or an error if security was not successful
type Authorizer ¶
type Authorizer interface { // Authorize returns decision specifying // whether the authorizer ran or not and an error if one occurs Authorize(req *http.Request) (Decision, error) }
Authorizer extracts the information from the authenticated user and returns a decision if the authorization passed
type Decision ¶
type Decision int
Decision represents a decision to allow or deny further processing or to abstain from taking a decision
type Encrypter ¶
type Encrypter interface { Encrypt(ctx context.Context, plaintext []byte) ([]byte, error) Decrypt(ctx context.Context, ciphertext []byte) ([]byte, error) }
Encrypter provides functionality to encrypt and decrypt data
type KeyFetcher ¶
KeyFetcher provides functionality to get encryption key from a remote location
type TokenData ¶ added in v0.1.6
type TokenData interface { // Claims reads the claims from the token into the specified struct Claims(v interface{}) error }
TokenData represents the authentication token
type TokenVerifier ¶
type TokenVerifier interface { // Verify verifies that the token is valid and returns a token if so, otherwise returns an error Verify(ctx context.Context, token string) (TokenData, error) }
TokenVerifier attempts to verify a token and returns it or an error if the verification was not successful
type TwoLayerEncrypter ¶
type TwoLayerEncrypter struct {
Fetcher KeyFetcher
}
TwoLayerEncrypter is an encrypter that fetches the encryption key from a remote location
Directories ¶
Path | Synopsis |
---|---|
Package authenticators contains logic for setting up an Open ID Connect authenticator
|
Package authenticators contains logic for setting up an Open ID Connect authenticator |
Code generated by counterfeiter.
|
Code generated by counterfeiter. |