인디노트

FIDO - authenticatorAttachment 본문

인증기술/FIDO

FIDO - authenticatorAttachment

인디개발자 2021. 1. 5. 11:02

This enumeration’s values describe authenticators' attachment modalities. Relying Parties use this to express a preferred authenticator attachment modality when calling navigator.credentials.create() to create a credential.enum AuthenticatorAttachment { "platform", "cross-platform" };

이 열거의 값은 인증 자의 첨부 양식을 설명합니다. 신뢰 당사자는 navigator.credentials.create ()를 호출하여 credential.enum AuthenticatorAttachment { "platform", "cross-platform"} 을 생성 할 때 선호하는 인증 자 첨부 양식을 표현하기 위해 이것을 사용합니다.

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

 

platform

This value indicates platform attachment.

이 값은 플랫폼 연결을 나타냅니다.

 

cross-platform

This value indicates cross-platform attachment.

이 값은 플랫폼 간 연결을 나타냅니다.

 

Note: An authenticator attachment modality selection option is available only in the [[Create]](origin, options, sameOriginWithAncestors) operation. The Relying Party may use it to, for example, ensure the user has a roaming credential for authenticating on another client device; or to specifically register a platform credential for easier reauthentication using a particular client device. The [[DiscoverFromExternalSource]](origin, options, sameOriginWithAncestors) operation has no authenticator attachment modality selection option, so the Relying Party SHOULD accept any of the user’s registered credentials. The client and user will then use whichever is available and convenient at the time.

참고 :

인증자 첨부 양식 선택 옵션은

[[Create]] (origin, options, sameOriginWithAncestors) 작업에서만 사용할 수 있습니다. 신뢰 당사자는 이를 사용하여 사용자가 다른 클라이언트 장치에서 인증하기 위한 로밍 자격 증명을 가지고 있는지 확인할 수 있습니다. 또는 특정 클라이언트 장치를 사용하여 쉽게 재 인증 할 수 있도록 플랫폼 자격 증명을 구체적으로 등록합니다.

[[DiscoverFromExternalSource]] (origin, options, sameOriginWithAncestors) 작업에는 인증자 연결 양식 선택 옵션이 없으므로 신뢰 당사자는 사용자의 등록 된 자격 증명을 수락해야 합니다 (SHOULD). 그런 다음 클라이언트와 사용자는 당시 사용 가능하고 편리한 것을 사용합니다.

 

authenticatorAttachment, of type DOMString

If this member is present, eligible authenticators are filtered to only authenticators attached with the specified § 5.4.5 Authenticator Attachment Enumeration (enum AuthenticatorAttachment). The value SHOULD be a member of AuthenticatorAttachment but client platforms MUST ignore unknown values, treating an unknown value as if the member does not exist.

authenticatorAttachment, DOMString 유형

이 멤버가 있는 경우 적격 인증자는 지정된 §5.4.5 Authenticator Attachment Enumeration (enum AuthenticatorAttachment)으로 연결된 인증 자 에게만 필터링 됩니다. 값은 AuthenticatorAttachment의 멤버여야 하지만 클라이언트 플랫폼은 알 수 없는 값을 무시하고 멤버가 없는 것처럼 처리해야합니다.

반응형

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

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