token

package
v0.0.0-...-c27f07c Latest Latest
Warning

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

Go to latest
Published: Apr 23, 2024 License: MIT Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

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

Functions

This section is empty.

Types

type JWTMaker

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

func (*JWTMaker) CreateToken

func (jm *JWTMaker) CreateToken(username string, duration time.Duration) (string, error)

func (*JWTMaker) VerifyToken

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

type Maker

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

func NewJWTMaker

func NewJWTMaker(secretKey string) (Maker, error)

func NewPasetoMaker

func NewPasetoMaker() Maker

type PasetoMaker

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

func (*PasetoMaker) CreateToken

func (pm *PasetoMaker) CreateToken(username string, duration time.Duration) (string, error)

func (*PasetoMaker) VerifyToken

func (pm *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

Jump to

Keyboard shortcuts

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