token

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Jun 13, 2023 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")
)

Different types of error returned by the VerifyToken function

Functions

This section is empty.

Types

type JWTMaker

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

JWTMaker

func (*JWTMaker) CreateToken

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

CreateToken implements Maker.

func (*JWTMaker) VerifyToken

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

VerifyToken implements Maker.

type Maker

type Maker interface {
	//CreateToken crete new token for a specific username and duration
	CreateToken(username string, duration time.Duration) (string, *Payload, error)
	//VerifyToken check token valid
	VerifyToken(token string) (*Payload, error)
}

Maker interface for managin token

func NewJWTMaker

func NewJWTMaker(secretKey string) (Maker, error)

func NewPasetoMaker

func NewPasetoMaker(symmetricKey string) (Maker, error)

type PasetoMaker

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

func (*PasetoMaker) CreateToken

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

CreateToken implements Maker.

func (*PasetoMaker) VerifyToken

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

VerifyToken implements Maker.

type Payload

type Payload struct {
	jwt.RegisteredClaims
	UserName string
	Role     string
}

Payload contains the payload data of token (Claims in jwt)

func NewPayload

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

Payload Builder

func (*Payload) Valid

func (payload *Payload) Valid() error

Valid checks if the token payload is valid or not

Jump to

Keyboard shortcuts

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