Documentation ¶
Index ¶
- Constants
- Variables
- func ContextToGRPC() grpc.ClientRequestFunc
- func ContextToHTTP() http.RequestFunc
- func GRPCToContext() grpc.ServerRequestFunc
- func HTTPToContext() http.RequestFunc
- func MapClaimsFactory() jwt.Claims
- func NewParser(keyFunc jwt.Keyfunc, method jwt.SigningMethod, newClaims ClaimsFactory) endpoint.Middleware
- func NewSigner(kid string, key []byte, method jwt.SigningMethod, claims jwt.Claims) endpoint.Middleware
- func StandardClaimsFactory() jwt.Claims
- type ClaimsFactory
Constants ¶
const ( // JWTTokenContextKey holds the key used to store a JWT Token in the // context. JWTTokenContextKey contextKey = "JWTToken" // JWTClaimsContextKey holds the key used to store the JWT Claims in the // context. JWTClaimsContextKey contextKey = "JWTClaims" )
Variables ¶
var ( // ErrTokenContextMissing denotes a token was not passed into the parsing // middleware's context. ErrTokenContextMissing = errors.New("token up for parsing was not passed through the context") // ErrTokenInvalid denotes a token was not able to be validated. ErrTokenInvalid = errors.New("JWT Token was invalid") // ErrTokenExpired denotes a token's expire header (exp) has since passed. ErrTokenExpired = errors.New("JWT Token is expired") // ErrTokenMalformed denotes a token was not formatted as a JWT token. ErrTokenMalformed = errors.New("JWT Token is malformed") // ErrTokenNotActive denotes a token's not before header (nbf) is in the // future. ErrTokenNotActive = errors.New("token is not valid yet") // ErrUnexpectedSigningMethod denotes a token was signed with an unexpected // signing method. ErrUnexpectedSigningMethod = errors.New("unexpected signing method") )
Functions ¶
func ContextToGRPC ¶ added in v0.6.0
func ContextToGRPC() grpc.ClientRequestFunc
ContextToGRPC moves a JWT from context to grpc metadata. Particularly useful for clients.
func ContextToHTTP ¶ added in v0.6.0
func ContextToHTTP() http.RequestFunc
ContextToHTTP moves a JWT from context to request header. Particularly useful for clients.
func GRPCToContext ¶ added in v0.6.0
func GRPCToContext() grpc.ServerRequestFunc
GRPCToContext moves a JWT from grpc metadata to context. Particularly userful for servers.
func HTTPToContext ¶ added in v0.6.0
func HTTPToContext() http.RequestFunc
HTTPToContext moves a JWT from request header to context. Particularly useful for servers.
func MapClaimsFactory ¶ added in v0.6.0
MapClaimsFactory is a ClaimsFactory that returns an empty jwt.MapClaims.
func NewParser ¶
func NewParser(keyFunc jwt.Keyfunc, method jwt.SigningMethod, newClaims ClaimsFactory) endpoint.Middleware
NewParser creates a new JWT token parsing middleware, specifying a jwt.Keyfunc interface, the signing method and the claims type to be used. NewParser adds the resulting claims to endpoint context or returns error on invalid token. Particularly useful for servers.
func NewSigner ¶
func NewSigner(kid string, key []byte, method jwt.SigningMethod, claims jwt.Claims) endpoint.Middleware
NewSigner creates a new JWT token generating middleware, specifying key ID, signing string, signing method and the claims you would like it to contain. Tokens are signed with a Key ID header (kid) which is useful for determining the key to use for parsing. Particularly useful for clients.
func StandardClaimsFactory ¶ added in v0.6.0
StandardClaimsFactory is a ClaimsFactory that returns an empty jwt.StandardClaims.
Types ¶
type ClaimsFactory ¶ added in v0.6.0
ClaimsFactory is a factory for jwt.Claims. Useful in NewParser middleware.