passkey

package
v0.0.0-...-c4f7e29 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

View Source
var DependencySet = wire.NewSet(
	wire.Struct(new(Store), "*"),
	wire.Struct(new(Provider), "*"),
)

Functions

This section is empty.

Types

type PasskeyService

type PasskeyService interface {
	PeekAttestationResponse(attestationResponse []byte) (creationOptions *model.WebAuthnCreationOptions, credentialID string, signCount int64, err error)
	PeekAssertionResponse(assertionResponse []byte, attestationResponse []byte) (signCount int64, err error)
}

nolint: golint

type Provider

type Provider struct {
	Store   *Store
	Clock   clock.Clock
	Passkey PasskeyService
}

func (*Provider) Authenticate

func (p *Provider) Authenticate(a *authenticator.Passkey, assertionResponse []byte) (requireUpdate bool, err error)

func (*Provider) Create

func (p *Provider) Create(a *authenticator.Passkey) error

func (*Provider) Delete

func (p *Provider) Delete(a *authenticator.Passkey) error

func (*Provider) Get

func (p *Provider) Get(userID string, id string) (*authenticator.Passkey, error)

func (*Provider) GetMany

func (p *Provider) GetMany(ids []string) ([]*authenticator.Passkey, error)

func (*Provider) List

func (p *Provider) List(userID string) ([]*authenticator.Passkey, error)

func (*Provider) New

func (p *Provider) New(
	id string,
	userID string,
	attestationResponse []byte,
	isDefault bool,
	kind string,
) (*authenticator.Passkey, error)

func (*Provider) Update

func (p *Provider) Update(a *authenticator.Passkey) error

type Store

type Store struct {
	SQLBuilder  *appdb.SQLBuilderApp
	SQLExecutor *appdb.SQLExecutor
}

func (*Store) Create

func (s *Store) Create(a *authenticator.Passkey) (err error)

func (*Store) Delete

func (s *Store) Delete(id string) error

func (*Store) Get

func (s *Store) Get(userID string, id string) (*authenticator.Passkey, error)

func (*Store) GetMany

func (s *Store) GetMany(ids []string) ([]*authenticator.Passkey, error)

func (*Store) List

func (s *Store) List(userID string) ([]*authenticator.Passkey, error)

func (*Store) UpdateSignCount

func (s *Store) UpdateSignCount(a *authenticator.Passkey) error

Jump to

Keyboard shortcuts

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