auth

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Apr 28, 2025 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidToken = fmt.Errorf("invalid token")
	ErrExpiredToken = fmt.Errorf("token has expired")
)

Functions

func CheckPasswordHash

func CheckPasswordHash(password, hash string) bool

func HashPassword

func HashPassword(password string) (string, error)

Types

type Auth

type Auth struct {
	*JWTManager
}

func New

func New(config Config) (*Auth, error)

type Config

type Config struct {
	SecretKey     string        `yaml:"secret_key"`
	TokenDuration time.Duration `yaml:"token_duration"`
}

type JWTManager

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

func (*JWTManager) GenerateToken

func (m *JWTManager) GenerateToken(userID string, claims map[string]interface{}) (string, error)

func (*JWTManager) ValidateToken

func (m *JWTManager) ValidateToken(tokenString string) (map[string]interface{}, error)

Jump to

Keyboard shortcuts

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