token

package
v0.0.0-...-6365a8a Latest Latest
Warning

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

Go to latest
Published: Oct 3, 2022 License: MIT Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrMalformedToken = fmt.Errorf("malformed token")
	ErrExpiredToken   = fmt.Errorf("expired token")
)
View Source
var (
	ErrInvalidKey = fmt.Errorf("invalid key")
)

Functions

This section is empty.

Types

type JWTMaker

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

func (*JWTMaker) CreateToken

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

func (*JWTMaker) VerifyToken

func (m *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(key string) (Maker, error)

func NewPasetoMaker

func NewPasetoMaker(symetricKey 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, error)

func (*PasetoMaker) VerifyToken

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

type Payload

type Payload struct {
	ID       uuid.UUID `json:"id"`
	Username string    `json:"username"`
	IssuesAt time.Time `json:"issued_at"`
	Expired  time.Time `json:"expired_at"`
}

func NewPayload

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

func (*Payload) Valid

func (p *Payload) Valid() error

Jump to

Keyboard shortcuts

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