auth

package
v0.5.2 Latest Latest
Warning

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

Go to latest
Published: Nov 30, 2025 License: MIT Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Authenticator

type Authenticator interface {
	Authenticate(challenge *Challenge, ignoreCached bool) (Token, error)
}

func NewAuthenticator

func NewAuthenticator(client *http.Client, credentials RegistryCredentials, fastChannel bool, tokenProvider FastChannelTokenProvider) Authenticator

type Challenge

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

func ParseChallenge

func ParseChallenge(challengeHeader string) (ch *Challenge, err error)

func (*Challenge) Realm

func (challenge *Challenge) Realm() *url.URL

func (*Challenge) Scope

func (challenge *Challenge) Scope() []string

func (*Challenge) Service

func (challenge *Challenge) Service() string

type FastChannelTokenProvider

type FastChannelTokenProvider interface {
	RequestMirrorToken(registryHost string, service string, scope []string) (string, error)
}

FastChannelTokenProvider fetches tokens for fast channel auth flows.

type RegistryCredentials

type RegistryCredentials interface {
	User() string
	Password() string
	IdentityToken() string
	SetPassword(password string)
	SetUser(user string)
}

type Token

type Token interface {
	Value() string
	Fresh() bool
}

Jump to

Keyboard shortcuts

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