jwt

package
v0.0.0-...-31fc120 Latest Latest
Warning

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

Go to latest
Published: Dec 5, 2019 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ErrClaimsInvalid = fmt.Errorf("claims invalid")
View Source
var ErrExpired = fmt.Errorf("token expired")
View Source
var ErrInvalid = fmt.Errorf("token invalid")
View Source
var ErrNoToken = fmt.Errorf("no token found")

Functions

This section is empty.

Types

type Claims

type Claims struct {
	Scope Scope `json:"scopes"`
	jwt.StandardClaims
}

func ParseClaims

func ParseClaims(claims jwt.Claims) (*Claims, error)

func Validate

func Validate(tokenString string, keyfunc jwt.Keyfunc, refreshing bool, audience string, subject *string) (*Claims, error)

type Scope

type Scope string
const (
	Access  Scope = "access"
	Refresh Scope = "refresh"
)

type Session

type Session struct {
	ID      string
	Access  string
	Exp     time.Time
	Refresh string
	Rexp    time.Time
	Subject string
	Type    string
}

func NewSession

func NewSession(sk crypto.PrivKey, pid peer.ID, proto protocol.ID, duration time.Duration) (*Session, error)

type SigningMethodEd25519

type SigningMethodEd25519 struct {
	Name string
}

Implements the Ed25519 signing method Expects *crypto.Ed25519PublicKey for signing and *crypto.Ed25519PublicKey for validation

var SigningMethodEd25519i *SigningMethodEd25519

Specific instance for Ed25519

func (*SigningMethodEd25519) Alg

func (m *SigningMethodEd25519) Alg() string

Alg returns the name of this signing method

func (*SigningMethodEd25519) Sign

func (m *SigningMethodEd25519) Sign(signingString string, key interface{}) (string, error)

Implements the Sign method from SigningMethod For this signing method, must be a *crypto.Ed25519PublicKey structure.

func (*SigningMethodEd25519) Verify

func (m *SigningMethodEd25519) Verify(signingString, signature string, key interface{}) error

Implements the Verify method from SigningMethod For this signing method, must be a *crypto.Ed25519PublicKey structure.

Jump to

Keyboard shortcuts

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