authenticators

package
v0.4.1-alpha Latest Latest
Warning

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

Go to latest
Published: Nov 11, 2022 License: Apache-2.0 Imports: 30 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ErrSessionLifespanParseError = errors.New("session lifespan parse error")
View Source
var ErrSessionValidity = errors.New("session validity error")
View Source
var (
	ErrUnsupportedAuthenticatorType = errors.New("authenticator type unsupported")
)

Functions

This section is empty.

Types

type Authenticator

type Authenticator interface {
	Execute(heimdall.Context) (*subject.Subject, error)
	WithConfig(config map[string]any) (Authenticator, error)
	IsFallbackOnErrorAllowed() bool
}

func CreateAuthenticatorPrototype

func CreateAuthenticatorPrototype(
	id string,
	typ config.PipelineObjectType,
	config map[string]any,
) (Authenticator, error)

type AuthenticatorTypeFactory

type AuthenticatorTypeFactory func(
	id string,
	typ config.PipelineObjectType,
	config map[string]any,
) (bool, Authenticator, error)

type SessionLifespan

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

func (*SessionLifespan) Assert

func (s *SessionLifespan) Assert() error

type SessionLifespanConfig

type SessionLifespanConfig struct {
	ActiveField    string        `mapstructure:"active"`
	IssuedAtField  string        `mapstructure:"issued_at"`
	NotBeforeField string        `mapstructure:"not_before"`
	NotAfterField  string        `mapstructure:"not_after"`
	TimeFormat     string        `mapstructure:"time_format"`
	ValidityLeeway time.Duration `mapstructure:"validity_leeway"`
}

func (*SessionLifespanConfig) CreateSessionLifespan

func (s *SessionLifespanConfig) CreateSessionLifespan(rawData []byte) (*SessionLifespan, error)

type SubjectFactory

type SubjectFactory interface {
	CreateSubject(rawData []byte) (*subject.Subject, error)
}

type SubjectInfo

type SubjectInfo struct {
	IDFrom         string `mapstructure:"id"`
	AttributesFrom string `mapstructure:"attributes"`
}

func (*SubjectInfo) CreateSubject

func (s *SubjectInfo) CreateSubject(rawData []byte) (*subject.Subject, error)

func (*SubjectInfo) Validate

func (s *SubjectInfo) Validate() error

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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