get_next_assertion works

This commit is contained in:
Conor Patrick
2018-05-23 23:30:08 -04:00
parent a21c8058e1
commit 644ceaef63
6 changed files with 195 additions and 46 deletions

6
ctap.h
View File

@@ -126,12 +126,16 @@ typedef struct
union _credential credential;
} __attribute__((packed)) CTAP_attestHeader;
typedef struct
{
uint8_t rpIdHash[32];
uint8_t flags;
uint32_t signCount;
} __attribute__((packed)) CTAP_authDataHeader;
typedef struct
{
CTAP_authDataHeader head;
CTAP_attestHeader attest;
} __attribute__((packed)) CTAP_authData;