webauthn

package
v0.0.0-...-887ee6f Latest Latest
Warning

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

Go to latest
Published: Sep 19, 2020 License: MIT Imports: 7 Imported by: 0

Documentation

Overview

Package webauthn provides the Chrome DevTools Protocol commands, types, and events for the WebAuthn domain.

This domain allows configuring virtual authenticators to test the WebAuthn API.

Generated by the cdproto-gen command.

Index

Constants

View Source
const (
	CommandEnable                         = "WebAuthn.enable"
	CommandDisable                        = "WebAuthn.disable"
	CommandAddVirtualAuthenticator        = "WebAuthn.addVirtualAuthenticator"
	CommandRemoveVirtualAuthenticator     = "WebAuthn.removeVirtualAuthenticator"
	CommandAddCredential                  = "WebAuthn.addCredential"
	CommandGetCredential                  = "WebAuthn.getCredential"
	CommandGetCredentials                 = "WebAuthn.getCredentials"
	CommandRemoveCredential               = "WebAuthn.removeCredential"
	CommandClearCredentials               = "WebAuthn.clearCredentials"
	CommandSetUserVerified                = "WebAuthn.setUserVerified"
	CommandSetAutomaticPresenceSimulation = "WebAuthn.setAutomaticPresenceSimulation"
)

Command names.

Variables

This section is empty.

Functions

This section is empty.

Types

type AddCredentialParams

type AddCredentialParams struct {
	AuthenticatorID AuthenticatorID `json:"authenticatorId"`
	Credential      *Credential     `json:"credential"`
}

AddCredentialParams adds the credential to the specified authenticator.

func AddCredential

func AddCredential(authenticatorID AuthenticatorID, credential *Credential) *AddCredentialParams

AddCredential adds the credential to the specified authenticator.

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#method-addCredential

parameters:

authenticatorID
credential

func (*AddCredentialParams) Do

func (p *AddCredentialParams) Do(ctx context.Context) (err error)

Do executes WebAuthn.addCredential against the provided context.

func (AddCredentialParams) MarshalEasyJSON

func (v AddCredentialParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (AddCredentialParams) MarshalJSON

func (v AddCredentialParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*AddCredentialParams) UnmarshalEasyJSON

func (v *AddCredentialParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*AddCredentialParams) UnmarshalJSON

func (v *AddCredentialParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type AddVirtualAuthenticatorParams

type AddVirtualAuthenticatorParams struct {
	Options *VirtualAuthenticatorOptions `json:"options"`
}

AddVirtualAuthenticatorParams creates and adds a virtual authenticator.

func AddVirtualAuthenticator

func AddVirtualAuthenticator(options *VirtualAuthenticatorOptions) *AddVirtualAuthenticatorParams

AddVirtualAuthenticator creates and adds a virtual authenticator.

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#method-addVirtualAuthenticator

parameters:

options

func (*AddVirtualAuthenticatorParams) Do

func (p *AddVirtualAuthenticatorParams) Do(ctx context.Context) (authenticatorID AuthenticatorID, err error)

Do executes WebAuthn.addVirtualAuthenticator against the provided context.

returns:

authenticatorID

func (AddVirtualAuthenticatorParams) MarshalEasyJSON

func (v AddVirtualAuthenticatorParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (AddVirtualAuthenticatorParams) MarshalJSON

func (v AddVirtualAuthenticatorParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*AddVirtualAuthenticatorParams) UnmarshalEasyJSON

func (v *AddVirtualAuthenticatorParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*AddVirtualAuthenticatorParams) UnmarshalJSON

func (v *AddVirtualAuthenticatorParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type AddVirtualAuthenticatorReturns

type AddVirtualAuthenticatorReturns struct {
	AuthenticatorID AuthenticatorID `json:"authenticatorId,omitempty"`
}

AddVirtualAuthenticatorReturns return values.

func (AddVirtualAuthenticatorReturns) MarshalEasyJSON

func (v AddVirtualAuthenticatorReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (AddVirtualAuthenticatorReturns) MarshalJSON

func (v AddVirtualAuthenticatorReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*AddVirtualAuthenticatorReturns) UnmarshalEasyJSON

func (v *AddVirtualAuthenticatorReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*AddVirtualAuthenticatorReturns) UnmarshalJSON

func (v *AddVirtualAuthenticatorReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type AuthenticatorID

type AuthenticatorID string

AuthenticatorID [no description].

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#type-AuthenticatorId

func (AuthenticatorID) String

func (t AuthenticatorID) String() string

String returns the AuthenticatorID as string value.

type AuthenticatorProtocol

type AuthenticatorProtocol string

AuthenticatorProtocol [no description].

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#type-AuthenticatorProtocol

const (
	AuthenticatorProtocolU2f   AuthenticatorProtocol = "u2f"
	AuthenticatorProtocolCtap2 AuthenticatorProtocol = "ctap2"
)

AuthenticatorProtocol values.

func (AuthenticatorProtocol) MarshalEasyJSON

func (t AuthenticatorProtocol) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (AuthenticatorProtocol) MarshalJSON

func (t AuthenticatorProtocol) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (AuthenticatorProtocol) String

func (t AuthenticatorProtocol) String() string

String returns the AuthenticatorProtocol as string value.

func (*AuthenticatorProtocol) UnmarshalEasyJSON

func (t *AuthenticatorProtocol) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*AuthenticatorProtocol) UnmarshalJSON

func (t *AuthenticatorProtocol) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type AuthenticatorTransport

type AuthenticatorTransport string

AuthenticatorTransport [no description].

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#type-AuthenticatorTransport

const (
	AuthenticatorTransportUsb      AuthenticatorTransport = "usb"
	AuthenticatorTransportNfc      AuthenticatorTransport = "nfc"
	AuthenticatorTransportBle      AuthenticatorTransport = "ble"
	AuthenticatorTransportCable    AuthenticatorTransport = "cable"
	AuthenticatorTransportInternal AuthenticatorTransport = "internal"
)

AuthenticatorTransport values.

func (AuthenticatorTransport) MarshalEasyJSON

func (t AuthenticatorTransport) MarshalEasyJSON(out *jwriter.Writer)

MarshalEasyJSON satisfies easyjson.Marshaler.

func (AuthenticatorTransport) MarshalJSON

func (t AuthenticatorTransport) MarshalJSON() ([]byte, error)

MarshalJSON satisfies json.Marshaler.

func (AuthenticatorTransport) String

func (t AuthenticatorTransport) String() string

String returns the AuthenticatorTransport as string value.

func (*AuthenticatorTransport) UnmarshalEasyJSON

func (t *AuthenticatorTransport) UnmarshalEasyJSON(in *jlexer.Lexer)

UnmarshalEasyJSON satisfies easyjson.Unmarshaler.

func (*AuthenticatorTransport) UnmarshalJSON

func (t *AuthenticatorTransport) UnmarshalJSON(buf []byte) error

UnmarshalJSON satisfies json.Unmarshaler.

type ClearCredentialsParams

type ClearCredentialsParams struct {
	AuthenticatorID AuthenticatorID `json:"authenticatorId"`
}

ClearCredentialsParams clears all the credentials from the specified device.

func ClearCredentials

func ClearCredentials(authenticatorID AuthenticatorID) *ClearCredentialsParams

ClearCredentials clears all the credentials from the specified device.

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#method-clearCredentials

parameters:

authenticatorID

func (*ClearCredentialsParams) Do

func (p *ClearCredentialsParams) Do(ctx context.Context) (err error)

Do executes WebAuthn.clearCredentials against the provided context.

func (ClearCredentialsParams) MarshalEasyJSON

func (v ClearCredentialsParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (ClearCredentialsParams) MarshalJSON

func (v ClearCredentialsParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*ClearCredentialsParams) UnmarshalEasyJSON

func (v *ClearCredentialsParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*ClearCredentialsParams) UnmarshalJSON

func (v *ClearCredentialsParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Credential

type Credential struct {
	CredentialID         string `json:"credentialId"`
	IsResidentCredential bool   `json:"isResidentCredential"`
	RpID                 string `json:"rpId,omitempty"`       // Relying Party ID the credential is scoped to. Must be set when adding a credential.
	PrivateKey           string `json:"privateKey"`           // The ECDSA P-256 private key in PKCS#8 format.
	UserHandle           string `json:"userHandle,omitempty"` // An opaque byte sequence with a maximum size of 64 bytes mapping the credential to a specific user.
	SignCount            int64  `json:"signCount"`            // Signature counter. This is incremented by one for each successful assertion. See https://w3c.github.io/webauthn/#signature-counter
}

Credential [no description].

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#type-Credential

func (Credential) MarshalEasyJSON

func (v Credential) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Credential) MarshalJSON

func (v Credential) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Credential) UnmarshalEasyJSON

func (v *Credential) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Credential) UnmarshalJSON

func (v *Credential) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type DisableParams

type DisableParams struct{}

DisableParams disable the WebAuthn domain.

func Disable

func Disable() *DisableParams

Disable disable the WebAuthn domain.

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#method-disable

func (*DisableParams) Do

func (p *DisableParams) Do(ctx context.Context) (err error)

Do executes WebAuthn.disable against the provided context.

func (DisableParams) MarshalEasyJSON

func (v DisableParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (DisableParams) MarshalJSON

func (v DisableParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*DisableParams) UnmarshalEasyJSON

func (v *DisableParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*DisableParams) UnmarshalJSON

func (v *DisableParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EnableParams

type EnableParams struct{}

EnableParams enable the WebAuthn domain and start intercepting credential storage and retrieval with a virtual authenticator.

func Enable

func Enable() *EnableParams

Enable enable the WebAuthn domain and start intercepting credential storage and retrieval with a virtual authenticator.

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#method-enable

func (*EnableParams) Do

func (p *EnableParams) Do(ctx context.Context) (err error)

Do executes WebAuthn.enable against the provided context.

func (EnableParams) MarshalEasyJSON

func (v EnableParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EnableParams) MarshalJSON

func (v EnableParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EnableParams) UnmarshalEasyJSON

func (v *EnableParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EnableParams) UnmarshalJSON

func (v *EnableParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetCredentialParams

type GetCredentialParams struct {
	AuthenticatorID AuthenticatorID `json:"authenticatorId"`
	CredentialID    string          `json:"credentialId"`
}

GetCredentialParams returns a single credential stored in the given virtual authenticator that matches the credential ID.

func GetCredential

func GetCredential(authenticatorID AuthenticatorID, credentialID string) *GetCredentialParams

GetCredential returns a single credential stored in the given virtual authenticator that matches the credential ID.

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#method-getCredential

parameters:

authenticatorID
credentialID

func (*GetCredentialParams) Do

func (p *GetCredentialParams) Do(ctx context.Context) (credential *Credential, err error)

Do executes WebAuthn.getCredential against the provided context.

returns:

credential

func (GetCredentialParams) MarshalEasyJSON

func (v GetCredentialParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetCredentialParams) MarshalJSON

func (v GetCredentialParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetCredentialParams) UnmarshalEasyJSON

func (v *GetCredentialParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetCredentialParams) UnmarshalJSON

func (v *GetCredentialParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetCredentialReturns

type GetCredentialReturns struct {
	Credential *Credential `json:"credential,omitempty"`
}

GetCredentialReturns return values.

func (GetCredentialReturns) MarshalEasyJSON

func (v GetCredentialReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetCredentialReturns) MarshalJSON

func (v GetCredentialReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetCredentialReturns) UnmarshalEasyJSON

func (v *GetCredentialReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetCredentialReturns) UnmarshalJSON

func (v *GetCredentialReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetCredentialsParams

type GetCredentialsParams struct {
	AuthenticatorID AuthenticatorID `json:"authenticatorId"`
}

GetCredentialsParams returns all the credentials stored in the given virtual authenticator.

func GetCredentials

func GetCredentials(authenticatorID AuthenticatorID) *GetCredentialsParams

GetCredentials returns all the credentials stored in the given virtual authenticator.

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#method-getCredentials

parameters:

authenticatorID

func (*GetCredentialsParams) Do

func (p *GetCredentialsParams) Do(ctx context.Context) (credentials []*Credential, err error)

Do executes WebAuthn.getCredentials against the provided context.

returns:

credentials

func (GetCredentialsParams) MarshalEasyJSON

func (v GetCredentialsParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetCredentialsParams) MarshalJSON

func (v GetCredentialsParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetCredentialsParams) UnmarshalEasyJSON

func (v *GetCredentialsParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetCredentialsParams) UnmarshalJSON

func (v *GetCredentialsParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GetCredentialsReturns

type GetCredentialsReturns struct {
	Credentials []*Credential `json:"credentials,omitempty"`
}

GetCredentialsReturns return values.

func (GetCredentialsReturns) MarshalEasyJSON

func (v GetCredentialsReturns) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GetCredentialsReturns) MarshalJSON

func (v GetCredentialsReturns) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GetCredentialsReturns) UnmarshalEasyJSON

func (v *GetCredentialsReturns) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GetCredentialsReturns) UnmarshalJSON

func (v *GetCredentialsReturns) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type RemoveCredentialParams

type RemoveCredentialParams struct {
	AuthenticatorID AuthenticatorID `json:"authenticatorId"`
	CredentialID    string          `json:"credentialId"`
}

RemoveCredentialParams removes a credential from the authenticator.

func RemoveCredential

func RemoveCredential(authenticatorID AuthenticatorID, credentialID string) *RemoveCredentialParams

RemoveCredential removes a credential from the authenticator.

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#method-removeCredential

parameters:

authenticatorID
credentialID

func (*RemoveCredentialParams) Do

func (p *RemoveCredentialParams) Do(ctx context.Context) (err error)

Do executes WebAuthn.removeCredential against the provided context.

func (RemoveCredentialParams) MarshalEasyJSON

func (v RemoveCredentialParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (RemoveCredentialParams) MarshalJSON

func (v RemoveCredentialParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*RemoveCredentialParams) UnmarshalEasyJSON

func (v *RemoveCredentialParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*RemoveCredentialParams) UnmarshalJSON

func (v *RemoveCredentialParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type RemoveVirtualAuthenticatorParams

type RemoveVirtualAuthenticatorParams struct {
	AuthenticatorID AuthenticatorID `json:"authenticatorId"`
}

RemoveVirtualAuthenticatorParams removes the given authenticator.

func RemoveVirtualAuthenticator

func RemoveVirtualAuthenticator(authenticatorID AuthenticatorID) *RemoveVirtualAuthenticatorParams

RemoveVirtualAuthenticator removes the given authenticator.

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#method-removeVirtualAuthenticator

parameters:

authenticatorID

func (*RemoveVirtualAuthenticatorParams) Do

Do executes WebAuthn.removeVirtualAuthenticator against the provided context.

func (RemoveVirtualAuthenticatorParams) MarshalEasyJSON

func (v RemoveVirtualAuthenticatorParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (RemoveVirtualAuthenticatorParams) MarshalJSON

func (v RemoveVirtualAuthenticatorParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*RemoveVirtualAuthenticatorParams) UnmarshalEasyJSON

func (v *RemoveVirtualAuthenticatorParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*RemoveVirtualAuthenticatorParams) UnmarshalJSON

func (v *RemoveVirtualAuthenticatorParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetAutomaticPresenceSimulationParams

type SetAutomaticPresenceSimulationParams struct {
	AuthenticatorID AuthenticatorID `json:"authenticatorId"`
	Enabled         bool            `json:"enabled"`
}

SetAutomaticPresenceSimulationParams sets whether tests of user presence will succeed immediately (if true) or fail to resolve (if false) for an authenticator. The default is true.

func SetAutomaticPresenceSimulation

func SetAutomaticPresenceSimulation(authenticatorID AuthenticatorID, enabled bool) *SetAutomaticPresenceSimulationParams

SetAutomaticPresenceSimulation sets whether tests of user presence will succeed immediately (if true) or fail to resolve (if false) for an authenticator. The default is true.

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#method-setAutomaticPresenceSimulation

parameters:

authenticatorID
enabled

func (*SetAutomaticPresenceSimulationParams) Do

Do executes WebAuthn.setAutomaticPresenceSimulation against the provided context.

func (SetAutomaticPresenceSimulationParams) MarshalEasyJSON

func (v SetAutomaticPresenceSimulationParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetAutomaticPresenceSimulationParams) MarshalJSON

func (v SetAutomaticPresenceSimulationParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetAutomaticPresenceSimulationParams) UnmarshalEasyJSON

func (v *SetAutomaticPresenceSimulationParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetAutomaticPresenceSimulationParams) UnmarshalJSON

func (v *SetAutomaticPresenceSimulationParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SetUserVerifiedParams

type SetUserVerifiedParams struct {
	AuthenticatorID AuthenticatorID `json:"authenticatorId"`
	IsUserVerified  bool            `json:"isUserVerified"`
}

SetUserVerifiedParams sets whether User Verification succeeds or fails for an authenticator. The default is true.

func SetUserVerified

func SetUserVerified(authenticatorID AuthenticatorID, isUserVerified bool) *SetUserVerifiedParams

SetUserVerified sets whether User Verification succeeds or fails for an authenticator. The default is true.

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#method-setUserVerified

parameters:

authenticatorID
isUserVerified

func (*SetUserVerifiedParams) Do

func (p *SetUserVerifiedParams) Do(ctx context.Context) (err error)

Do executes WebAuthn.setUserVerified against the provided context.

func (SetUserVerifiedParams) MarshalEasyJSON

func (v SetUserVerifiedParams) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SetUserVerifiedParams) MarshalJSON

func (v SetUserVerifiedParams) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SetUserVerifiedParams) UnmarshalEasyJSON

func (v *SetUserVerifiedParams) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SetUserVerifiedParams) UnmarshalJSON

func (v *SetUserVerifiedParams) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type VirtualAuthenticatorOptions

type VirtualAuthenticatorOptions struct {
	Protocol                    AuthenticatorProtocol  `json:"protocol"`
	Transport                   AuthenticatorTransport `json:"transport"`
	HasResidentKey              bool                   `json:"hasResidentKey,omitempty"`              // Defaults to false.
	HasUserVerification         bool                   `json:"hasUserVerification,omitempty"`         // Defaults to false.
	AutomaticPresenceSimulation bool                   `json:"automaticPresenceSimulation,omitempty"` // If set to true, tests of user presence will succeed immediately. Otherwise, they will not be resolved. Defaults to true.
	IsUserVerified              bool                   `json:"isUserVerified,omitempty"`              // Sets whether User Verification succeeds or fails for an authenticator. Defaults to false.
}

VirtualAuthenticatorOptions [no description].

See: https://chromedevtools.github.io/devtools-protocol/tot/WebAuthn#type-VirtualAuthenticatorOptions

func (VirtualAuthenticatorOptions) MarshalEasyJSON

func (v VirtualAuthenticatorOptions) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (VirtualAuthenticatorOptions) MarshalJSON

func (v VirtualAuthenticatorOptions) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*VirtualAuthenticatorOptions) UnmarshalEasyJSON

func (v *VirtualAuthenticatorOptions) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*VirtualAuthenticatorOptions) UnmarshalJSON

func (v *VirtualAuthenticatorOptions) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

Jump to

Keyboard shortcuts

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