Class AuthenticatorInformation

Definition

Namespace:
Tizen.Account.FidoClient
Assembly:
Tizen.Account.FidoClient.dll
API Level:
3

Contains information about the authenticators registered on the device.

C#
Copy
public class AuthenticatorInformation
Inheritance
System.Object
AuthenticatorInformation
Examples
Copy
IEnumerable<AuthenticatorInformation> authInfos = await UafAuthenticatorFinder.DiscoverAuthenticatorsAsync(); foreach (AuthenticatorInformation authInfo in authInfos) { string aaid = authInfo.Aaid; string title = authInfo.Title; }

Properties

View Source

Aaid

The Authenticator AAID (Authenticator Attestation ID)

Declaration
C#
Copy
public string Aaid { get; }
Property Value
Type Description
System.String
API Level: 3
View Source

AssertionScheme

The Authenticator assertion scheme.

Declaration
C#
Copy
public string AssertionScheme { get; }
Property Value
Type Description
System.String
API Level: 3
View Source

AttachmentHint

The attachment hint of this Authenticator.

Declaration
C#
Copy
public AuthenticatorAttachmentHint AttachmentHint { get; }
Property Value
Type Description
AuthenticatorAttachmentHint
API Level: 3
View Source

AttestationTypes

The available attestation types for this Authenticator.

Declaration
C#
Copy
public IEnumerable<AuthenticatorAttestationType> AttestationTypes { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<AuthenticatorAttestationType>
API Level: 3
View Source

AuthenticationAlgorithm

The Authenticator algorithm.

Declaration
C#
Copy
public AuthenticationAlgorithm AuthenticationAlgorithm { get; }
Property Value
Type Description
AuthenticationAlgorithm
API Level: 3
View Source

Description

The Authenticator description

Declaration
C#
Copy
public string Description { get; }
Property Value
Type Description
System.String
API Level: 3
View Source

Icon

The icon of this Authenticator.

Declaration
C#
Copy
public string Icon { get; }
Property Value
Type Description
System.String
API Level: 3
View Source

IsSecondFactorOnly

Denotes the Authenticator is Second factor only which is supported by U2F standards.

Declaration
C#
Copy
public bool IsSecondFactorOnly { get; }
Property Value
Type Description
System.Boolean
API Level: 3
View Source

KeyProtection

The key protection method of this Authenticator.

Declaration
C#
Copy
public KeyProtectionType KeyProtection { get; }
Property Value
Type Description
KeyProtectionType
API Level: 3
View Source

MatcherProtection

The matcher protection method of this Authenticator.

Declaration
C#
Copy
public MatcherProtectionType MatcherProtection { get; }
Property Value
Type Description
MatcherProtectionType
API Level: 3
View Source

TcDisplayContentType

The Transaction Confirmation display type of this Authenticator.

Declaration
C#
Copy
public string TcDisplayContentType { get; }
Property Value
Type Description
System.String
API Level: 3
View Source

TcDisplayType

The Transaction Confirmation display type of this Authenticator.

Declaration
C#
Copy
public TransactionConfirmationDisplayType TcDisplayType { get; }
Property Value
Type Description
TransactionConfirmationDisplayType
API Level: 3
View Source

Title

The authenticator Title

Declaration
C#
Copy
public string Title { get; }
Property Value
Type Description
System.String
API Level: 3
View Source

UserVerification

The user verification method of this Authenticator

Declaration
C#
Copy
public UserVerificationMethod UserVerification { get; }
Property Value
Type Description
UserVerificationMethod
API Level: 3