인디노트

FIDO - AuthenticatorTransport 본문

인증기술/FIDO

FIDO - AuthenticatorTransport

인디개발자 2021. 1. 5. 11:25
enum AuthenticatorTransport {
    "usb",
    "nfc",
    "ble",
    "internal"
};

Note: The AuthenticatorTransport enumeration is deliberately not referenced, see § 2.1.1 Enumerations as DOMString types.

Authenticators may implement various transports for communicating with clients. This enumeration defines hints as to how clients might communicate with a particular authenticator in order to obtain an assertion for a specific credential. Note that these hints represent the WebAuthn Relying Party's best belief as to how an authenticator may be reached. A Relying Party will typically learn of the supported transports for a public key credential via getTransports().

인증자는 클라이언트와 통신하기 위해 다양한 전송을 구현할 수 있습니다. 이 열거형은 특정 자격 증명에 대한 어설션을 얻기 위해 클라이언트가 특정 인증자와 통신하는 방법에 대한 힌트를 정의합니다. 이러한 힌트는 인증자에 도달 할 수 있는 방법에 대한 WebAuthn 신뢰 당사자의 최선의 믿음을 나타냅니다. 신뢰 당사자는 일반적으로 getTransports() 를 통해 공개키 자격 증명에 대해 지원되는 전송을 학습합니다.

 

usb

Indicates the respective authenticator can be contacted over removable USB.

 

nfc

Indicates the respective authenticator can be contacted over Near Field Communication (NFC).

 

ble

Indicates the respective authenticator can be contacted over Bluetooth Smart (Bluetooth Low Energy / BLE).

 

internal

Indicates the respective authenticator is contacted using a client device-specific transport, i.e., it is a platform authenticator. These authenticators are not removable from the client device.

각 인증자가 클라이언트 장치 별 전송을 사용하여 연결 되었음을 나타냅니다. 즉, 플랫폼 인증자입니다. 이러한 인증자는 클라이언트 장치에서 제거 할 수 없습니다.

반응형

'인증기술 > FIDO' 카테고리의 다른 글

Your First Android FIDO2 API  (0) 2021.01.12
FIDO - authenticatorAttachment  (0) 2021.01.05
FIDO - excludeCredentials  (0) 2021.01.05
FIDO - authenticatorAttachment  (0) 2021.01.05
FIDO - residentKey  (0) 2021.01.05
Comments