Class PubkeyCredDescriptor

    Definition

    Namespace:
    Tizen.Security.WebAuthn
    Assembly:
    Tizen.Security.WebAuthn.dll

    Public key credential descriptor.

    public class PubkeyCredDescriptor
    Inheritance
    object
    PubkeyCredDescriptor
    Remarks

    Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialdescriptor

    Constructors

    View Source

    PubkeyCredDescriptor(PubkeyCredType, byte[], AuthenticatorTransport)

    Initializes a new instance of the PubkeyCredDescriptor class.

    Declaration
    public PubkeyCredDescriptor(PubkeyCredType type, byte[] id, AuthenticatorTransport transport)
    Parameters
    Type Name Description
    PubkeyCredType type

    The type of the public key credential.

    byte[] id

    The credential ID of the public key credential.

    AuthenticatorTransport transport

    Transport types. To represent multiple transports, this enum can be ORed multiple times.

    Remarks

    Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialdescriptor

    Properties

    View Source

    Id

    Gets the ID of the public key credential.

    Declaration
    public byte[] Id { get; init; }
    Property Value
    Type Description
    byte[]

    The binary ID of the public key credential.

    Remarks

    Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialdescriptor

    View Source

    Transport

    Gets the transport types.

    Declaration
    public AuthenticatorTransport Transport { get; init; }
    Property Value
    Type Description
    AuthenticatorTransport

    The transport types describing communication between the client and the authenticator. To represent multiple transports, this enum can be ORed multiple times.

    Remarks

    Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialdescriptor

    View Source

    Type

    Gets the type of the public key credential.

    Declaration
    public PubkeyCredType Type { get; init; }
    Property Value
    Type Description
    PubkeyCredType

    The type of the public key credential.

    Remarks

    Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#dictdef-publickeycredentialdescriptor

    • View Source
    Back to top Copyright © 2016-2024 Samsung
    Generated by DocFX