Skip to content

Commit

Permalink
compare only credId when comparing rk creds to allowList
Browse files Browse the repository at this point in the history
  • Loading branch information
conorpp committed Mar 23, 2021
1 parent 02c623b commit d2293de
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion fido2/ctap.c
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,11 @@ static int is_matching_rk(CTAP_residentKey * rk, CTAP_residentKey * rk2)
(rk->user.id_size == rk2->user.id_size);
}

static int is_cred_id_matching_rk(CredentialId * credId, CTAP_residentKey * rk)
{
return (memcmp(credId, &rk->id, sizeof(CredentialId)) == 0);
}

static int ctap_make_extensions(CTAP_extensions * ext, uint8_t * ext_encoder_buf, unsigned int * ext_encoder_buf_size)
{
CborEncoder extensions;
Expand Down Expand Up @@ -1147,7 +1152,7 @@ static void add_existing_user_info(CTAP_credentialDescriptor * cred)
for (i = 0; i < index; i++)
{
load_nth_valid_rk(i, &rk);
if (is_matching_rk(&rk, (CTAP_residentKey *)&cred->credential))
if (is_cred_id_matching_rk(&cred->credential.id, &rk))
{
printf1(TAG_GREEN, "found rk match for allowList item (%d)\r\n", i);
memmove(&cred->credential.user, &rk.user, sizeof(CTAP_userEntity));
Expand Down
1 change: 1 addition & 0 deletions fido2/ctap_parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -997,6 +997,7 @@ uint8_t parse_allow_list(CTAP_getAssertion * GA, CborValue * it)
GA->credLen += 1;
cred = &GA->creds[i];

memset(cred, 0, sizeof(CTAP_credentialDescriptor));
ret = parse_credential_descriptor(&arr,cred);
check_retr(ret);

Expand Down

0 comments on commit d2293de

Please sign in to comment.