Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/u2f/u2f.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#define U2F_MAX_ATT_CERT_SIZE 1024 // Max size of attestation certificate
#define U2F_MAX_EC_SIG_SIZE 72 // Max size of ANS.1 DER encoded EC signature
#define U2F_CTR_SIZE 4 // Size of counter field
#define U2F_FRAME_SIZE (3 + U2F_CTR_SIZE)// 1-byte flag | 4-byte counter | 2-byte status
#define U2F_APPID_SIZE 32 // Size of application id
#define U2F_NONCE_LENGTH 32 // Size of challenge nonce
#define U2F_UNCOMPRESSED_POINT 0x04 // Uncompressed point format
Expand Down
Loading