summaryrefslogtreecommitdiff
path: root/src/cred.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cred.c')
-rw-r--r--src/cred.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/cred.c b/src/cred.c
index 4ecbba8..9f902fa 100644
--- a/src/cred.c
+++ b/src/cred.c
@@ -967,6 +967,18 @@ fido_cred_id_len(const fido_cred_t *cred)
967 return (cred->attcred.id.len); 967 return (cred->attcred.id.len);
968} 968}
969 969
970const unsigned char *
971fido_cred_aaguid_ptr(const fido_cred_t *cred)
972{
973 return (cred->attcred.aaguid);
974}
975
976size_t
977fido_cred_aaguid_len(const fido_cred_t *cred)
978{
979 return (sizeof(cred->attcred.aaguid));
980}
981
970int 982int
971fido_cred_prot(const fido_cred_t *cred) 983fido_cred_prot(const fido_cred_t *cred)
972{ 984{