Ctap2 class

Properties

device CtapDevice
final
hashCode int
The hash code for this object.
no setterinherited
info AuthenticatorInfo
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

clientPin(ClientPinRequest request) Future<CtapResponse<ClientPinResponse?>>
credentialManagement(CredentialManagementRequest request) Future<CtapResponse<CredentialManagementResponse?>>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
refreshInfo() Future<CtapResponse<AuthenticatorInfo>>
reset() Future<CtapResponse>
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

create(CtapDevice device) Future<Ctap2>
makeClientPinRequest(ClientPinRequest request) List<int>
Make the request to clientPin.
makeCredentialManagementRequest(CredentialManagementRequest request) List<int>
Make the request to credentialManagement.
makeGetInfoRequest() List<int>
Make the request to get info from the authenticator.
parseClientPinResponse(List<int> data) ClientPinResponse
Parse the response from clientPin.
parseCredentialManagementResponse(List<int> data) CredentialManagementResponse
Parse the response from credentialManagement.
parseGetInfoResponse(List<int> data) AuthenticatorInfo
Parse the response from the authenticator.