oidc

package
v1.2.1 Latest Latest
Warning

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

Go to latest
Published: Aug 12, 2024 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Overview

Package jwt provides JWT manipulations. See https://tools.ietf.org/html/rfc7519#section-4.1.3

Index

Constants

View Source
const (
	Profile = "oidc"
)

Variables

This section is empty.

Functions

func DecodePayloadAsPrettyJSON

func DecodePayloadAsPrettyJSON(s string) (string, error)

DecodePayloadAsPrettyJSON decodes the JWT string and returns the pretty JSON string.

func DecodePayloadAsRawJSON

func DecodePayloadAsRawJSON(s string) ([]byte, error)

DecodePayloadAsRawJSON extracts the payload and returns the raw JSON.

Types

type Claims

type Claims struct {
	Issuer   string
	Subject  string
	Name     string
	Username string
	Email    string
	Expiry   time.Time
	Pretty   string // string representation for debug and logging
}

Claims represents claims of an ID token.

func DecodeWithoutVerify

func DecodeWithoutVerify(s string) (c *Claims, err error)

DecodeWithoutVerify decodes the JWT string and returns the claims. Note that this method does not verify the signature and always trust it.

func (*Claims) IsExpired

func (c *Claims) IsExpired(clock Clock) bool

IsExpired returns true if the token is expired.

type Clock

type Clock interface {
	Now() time.Time
}

Clock provides the current time.

type Token

type Token struct {
	at.Scope `value:"request"`

	Context context.Context `json:"context"`
	Data    string          `json:"data"`
	Claims  *Claims         `json:"claims"`
}

Token is the token object

Jump to

Keyboard shortcuts

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