summaryrefslogtreecommitdiff
path: root/man/fido_bio_template.3
diff options
context:
space:
mode:
Diffstat (limited to 'man/fido_bio_template.3')
-rw-r--r--man/fido_bio_template.322
1 files changed, 11 insertions, 11 deletions
diff --git a/man/fido_bio_template.3 b/man/fido_bio_template.3
index 6140926..8414937 100644
--- a/man/fido_bio_template.3
+++ b/man/fido_bio_template.3
@@ -38,11 +38,11 @@
38.Ft fido_bio_template_array_t * 38.Ft fido_bio_template_array_t *
39.Fn fido_bio_template_array_new "void" 39.Fn fido_bio_template_array_new "void"
40.Ft void 40.Ft void
41.Fn fido_bio_template_array_free "fido_bio_template_array_t **template_array_p" 41.Fn fido_bio_template_array_free "fido_bio_template_array_t **array_p"
42.Ft size_t 42.Ft size_t
43.Fn fido_bio_template_array_count "const fido_bio_template_array_t *template_array" 43.Fn fido_bio_template_array_count "const fido_bio_template_array_t *array"
44.Ft const fido_bio_template_t * 44.Ft const fido_bio_template_t *
45.Fn fido_bio_template "const fido_bio_template_array_t *template_array" "size_t idx" 45.Fn fido_bio_template "const fido_bio_template_array_t *array" "size_t idx"
46.Sh DESCRIPTION 46.Sh DESCRIPTION
47Existing FIDO 2 biometric enrollments are abstracted in 47Existing FIDO 2 biometric enrollments are abstracted in
48.Em libfido2 48.Em libfido2
@@ -132,18 +132,18 @@ If memory cannot be allocated, NULL is returned.
132The 132The
133.Fn fido_bio_template_array_free 133.Fn fido_bio_template_array_free
134function releases the memory backing 134function releases the memory backing
135.Fa *template_array_p , 135.Fa *array_p ,
136where 136where
137.Fa *template_array_p 137.Fa *array_p
138must have been previously allocated by 138must have been previously allocated by
139.Fn fido_bio_template_array_new . 139.Fn fido_bio_template_array_new .
140On return, 140On return,
141.Fa *template_array_p 141.Fa *array_p
142is set to NULL. 142is set to NULL.
143Either 143Either
144.Fa template_array_p 144.Fa array_p
145or 145or
146.Fa *template_array_p 146.Fa *array_p
147may be NULL, in which case 147may be NULL, in which case
148.Fn fido_bio_template_array_free 148.Fn fido_bio_template_array_free
149is a NOP. 149is a NOP.
@@ -151,16 +151,16 @@ is a NOP.
151The 151The
152.Fn fido_bio_template_array_count 152.Fn fido_bio_template_array_count
153function returns the number of templates in 153function returns the number of templates in
154.Fa template_array . 154.Fa array .
155.Pp 155.Pp
156The 156The
157.Fn fido_bio_template 157.Fn fido_bio_template
158function returns a pointer to the template at index 158function returns a pointer to the template at index
159.Fa idx 159.Fa idx
160in 160in
161.Fa template_array . 161.Fa array .
162Please note that the first template in 162Please note that the first template in
163.Fa template_array 163.Fa array
164has an 164has an
165.Fa idx 165.Fa idx
166(index) value of 0. 166(index) value of 0.