Skip to content

Commit

Permalink
Resolved merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
selfissued committed Jul 29, 2017
2 parents 947290b + 52b4422 commit c4cead0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions index.bs
Expand Up @@ -657,6 +657,7 @@ When this method is invoked, the user agent MUST execute the following algorithm
1. Otherwise, [=list/Append=] |C| to |excludeCredentialDescriptorList|.
1. [=In parallel=], invoke the [=authenticatorMakeCredential=] operation on |authenticator| with |rpId|,
|clientDataHash|, |options|.{{MakePublicKeyCredentialOptions/rp}}, |options|.{{MakePublicKeyCredentialOptions/user}},
<code>|options|.{{MakePublicKeyCredentialOptions/authenticatorSelection}}.{{AuthenticatorSelectionCriteria/requireResidentKey}}</code>,
|normalizedParameters|, |excludeCredentialDescriptorList|, and |authenticatorExtensions| as parameters.
1. [=set/Append=] |authenticator| to |issuedRequests|.

Expand Down Expand Up @@ -1565,9 +1566,9 @@ input parameters:
preferred. The platform makes a best-effort to create the most preferred credential that it can.
- An optional list of {{PublicKeyCredentialDescriptor}} objects provided by the [=[RP]=] with the intention that, if any of
these are known to the authenticator, it should not create a new credential.
- Extension data created by the client based on the extensions requested by the [=[RP]=], if any.
- The |requireResidentKey| parameter of the |options|.{{MakePublicKeyCredentialOptions/authenticatorSelection}} dictionary.
- The |requireUserVerification| parameter of the |options|.{{MakePublicKeyCredentialOptions/authenticatorSelection}} dictionary.
- Extension data created by the client based on the extensions requested by the [=[RP]=], if any.

When this operation is invoked, the authenticator must perform the following procedure:
- Check if all the supplied parameters are syntactically well-formed and of the correct length. If not, return an error code
Expand Down Expand Up @@ -3261,11 +3262,11 @@ The sample code for generating and registering a new key follows:
pubKeyCredParams: [
{
type: "public-key",
algorithm: "ES256",
alg: "ES256",
},
{
type: "public-key",
algorithm: "RS256",
alg: "RS256",
}
],

Expand Down

0 comments on commit c4cead0

Please sign in to comment.