token

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Dec 31, 2017 License: Apache-2.0 Imports: 3 Imported by: 9

Documentation

Index

Constants

View Source
const (
	// UserToken is the name of the user token.
	UserToken = "user"

	// SessToken is the name of the session token.
	SessToken = "sess"

	// HookToken is the name of the hook token.
	HookToken = "hook"

	// CsrfToken is the name of the CSRF token.
	CsrfToken = "csrf"
)
View Source
const SignerAlgo = "HS256"

SignerAlgo defines the default algorithm used to sign JWT tokens.

Variables

This section is empty.

Functions

func CheckCsrf

func CheckCsrf(r *http.Request, fn SecretFunc) error

CheckCsrf checks the validity of the JWT.

Types

type SecretFunc

type SecretFunc func(*Token) (string, error)

SecretFunc is the definition of the required secret retrieval function.

type Token

type Token struct {
	Kind string
	Text string
}

Token represents our simple JWT.

func New

func New(kind, text string) *Token

New initializes a new JWT.

func Parse

func Parse(raw string, fn SecretFunc) (*Token, error)

Parse parses a raw JWT.

func ParseRequest

func ParseRequest(r *http.Request, fn SecretFunc) (*Token, error)

ParseRequest parses a JWT from the request.

func (*Token) Sign

func (t *Token) Sign(secret string) (string, error)

Sign signs the token using the given secret hash and returns the string value.

func (*Token) SignExpires

func (t *Token) SignExpires(secret string, exp int64) (string, error)

SignExpires signs the token using the given secret hash with an expiration date.

Jump to

Keyboard shortcuts

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