1FIDO_INIT(3) BSD Library Functions Manual FIDO_INIT(3)
2
4 fido_init — initialise the FIDO 2 library
5
7 #include <fido.h>
8
9 void
10 fido_init(int flags);
11
13 The fido_init() function initialises the libfido2 library. Its invoca‐
14 tion must precede that of any other libfido2 function in the context of
15 the executing thread.
16
17 If FIDO_DEBUG is set in flags, then debug output will be emitted by
18 libfido2 on stderr. Alternatively, the FIDO_DEBUG environment variable
19 may be set.
20
21 If FIDO_DISABLE_U2F_FALLBACK is set in flags, then libfido2 will not
22 fallback to U2F in fido_dev_open(3) if a device claims to be FIDO2 but
23 fails to respond to a FIDO2 command.
24
26 fido_assert_new(3), fido_cred_new(3), fido_dev_info_manifest(3),
27 fido_dev_open(3)
28
29BSD May 25, 2018 BSD