Documentation ¶
Overview ¶
Package tokenmanager implements a simple JSON Web Token (JWT) and JSON Web Key (JWK) management system. It manages key rotation, token creation, and token validation.
Index ¶
- Constants
- type TokenManager
- func (tm *TokenManager) CreateToken(claims jwt.Claims, alg string) (string, error)
- func (tm *TokenManager) KeyRotationLoop(ctx context.Context)
- func (tm *TokenManager) ServeJWKS(w http.ResponseWriter, req *http.Request)
- func (tm *TokenManager) URLToken(w http.ResponseWriter, req *http.Request, u *url.URL) (string, string, error)
- func (tm *TokenManager) ValidateToken(t string, opts ...jwt.ParserOption) (*jwt.Token, error)
- func (tm *TokenManager) ValidateURLToken(w http.ResponseWriter, req *http.Request, token string) (*url.URL, error)
Constants ¶
const (
SessionIDCookieName = "TLSPROXYSID"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TokenManager ¶
type TokenManager struct {
// contains filtered or unexported fields
}
TokenManager implements a simple JSON Web Token (JWT) and JSON Web Key (JWK) management system. It manages key rotation, token creation, and token validation.
func (*TokenManager) CreateToken ¶
CreateToken creates a new JSON Web Token (JWT) with the provided claims.
func (*TokenManager) KeyRotationLoop ¶
func (tm *TokenManager) KeyRotationLoop(ctx context.Context)
KeyRotationLoop takes care of key rotation. It runs until ctx is canceled.
func (*TokenManager) ServeJWKS ¶
func (tm *TokenManager) ServeJWKS(w http.ResponseWriter, req *http.Request)
ServeJWKS returns the current public keys as a JSON Web Key Set (JWKS).
func (*TokenManager) URLToken ¶ added in v0.4.4
func (tm *TokenManager) URLToken(w http.ResponseWriter, req *http.Request, u *url.URL) (string, string, error)
URLToken returns a signed token for URL u in the context of request req.
func (*TokenManager) ValidateToken ¶
func (tm *TokenManager) ValidateToken(t string, opts ...jwt.ParserOption) (*jwt.Token, error)
ValidateToken validates a JSON Web Token (JWT).
func (*TokenManager) ValidateURLToken ¶ added in v0.4.4
func (tm *TokenManager) ValidateURLToken(w http.ResponseWriter, req *http.Request, token string) (*url.URL, error)
ValidateURLToken validates a signed token and returns the URL. The request must on the same host as the one where the token was created.