jwt

package
v1.0.27 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 21, 2024 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (
	IOTechIssuer = "IOTech"

	Algorithm      = "alg"
	Authorized     = "authorized"
	ClaimAccessId  = "access_id"
	ClaimRefreshId = "refresh_id"
	ClaimUsername  = "user_name"
	ExpiresAt      = "exp"
	Issuer         = "iss"
)

Constants related to JWT

View Source
const (
	AccessTokenCookie = "IOTech_access_token"
	// This is not potential hardcoded credentials
	// nolint:gosec
	RefreshTokenCookie = "IOTech_refresh_token"
)

Constants related to Cookie and HTTP headers

Variables

This section is empty.

Functions

func GetTokenStringFromRequest

func GetTokenStringFromRequest(r *http.Request) (string, errors.Error)

GetTokenStringFromRequest gets the token string from the request header

func GetTokensFromCookie added in v1.0.25

func GetTokensFromCookie(r *http.Request) (string, string)

GetTokensFromCookie gets the access token and refresh token from the request cookie

func RemoveTokensFromCookie added in v1.0.25

func RemoveTokensFromCookie(w http.ResponseWriter)

RemoveTokensFromCookie removes the access token and refresh token from the response cookie

func SetTokensToCookie added in v1.0.25

func SetTokensToCookie(w http.ResponseWriter, t *TokenDetails)

SetTokensToCookie sets the access token and refresh token to the response cookie

func ValidateAccessToken added in v1.0.23

func ValidateAccessToken(tokenString string, secretKey string) (string, string, errors.Error)

ValidateAccessToken validates the given access token string and gets the accessId and username.

func ValidateRefreshToken added in v1.0.23

func ValidateRefreshToken(tokenString string, refreshSecretKey string) (string, string, errors.Error)

ValidateRefreshToken validates the given refresh token string and gets the refreshId and username.

Types

type TokenDetails

type TokenDetails struct {
	AccessId     string
	AccessToken  string
	AtExpires    int64
	RefreshId    string
	RefreshToken string
	RtExpires    int64
}

func CreateToken

func CreateToken(name, secretKey, refreshSecretKey string, atExpiresFromNow, reExpiresFromNow *int64) (*TokenDetails, errors.Error)

CreateToken creates a new token with the given name and expiration time, specified in hours from now with the default expiration time of 2 hours for access token and 7 days for refresh token

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL