token

package
v0.0.0-...-5ee8369 Latest Latest
Warning

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

Go to latest
Published: Apr 24, 2024 License: MIT Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidToken = errors.New("token is invalid")
	ErrExpiredToken = errors.New("token has expired")
)

Functions

This section is empty.

Types

type JWTMaker

type JWTMaker struct {
	// contains filtered or unexported fields
}

func (*JWTMaker) GenerateToken

func (maker *JWTMaker) GenerateToken(username string, duration time.Duration) (string, error)

func (*JWTMaker) VerifyToken

func (maker *JWTMaker) VerifyToken(token string) (*Payload, error)

type Maker

type Maker interface {
	GenerateToken(username string, duration time.Duration) (string, error)
	VerifyToken(token string) (*Payload, error)
}

func NewJWTMaker

func NewJWTMaker(jwtSecretKey string) (Maker, error)

NewJWTMaker Usage: var jwtKey = []byte(os.Getenv("JWT_SECRET_KEY"))

func NewPasetoMaker

func NewPasetoMaker(symmetricKey string) (Maker, error)

type PasetoMaker

type PasetoMaker struct {
	// contains filtered or unexported fields
}

func (PasetoMaker) GenerateToken

func (maker PasetoMaker) GenerateToken(username string, duration time.Duration) (string, error)

func (PasetoMaker) VerifyToken

func (maker PasetoMaker) VerifyToken(token string) (*Payload, error)

type Payload

type Payload struct {
	Username string `json:"username"`
	jwt.RegisteredClaims
}

func NewPayload

func NewPayload(username string, duration time.Duration) (*Payload, error)

func (*Payload) Valid

func (payload *Payload) Valid() error

Jump to

Keyboard shortcuts

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