summaryrefslogtreecommitdiff
path: root/src/fido/credman.h
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2020-04-17 20:57:34 +0100
committerColin Watson <cjwatson@debian.org>2020-04-18 09:48:21 +0100
commitdf7226c4b684fd229dc046388225c69ded877721 (patch)
treee69014e1ee868c4ec178b8a36baae7de31786beb /src/fido/credman.h
parentf794345c2d734f593da8ed7754e5dbb5809c688d (diff)
parent75073d0a8478441cc97a6efa10b566c5fb1dac81 (diff)
Update upstream source from tag 'upstream/1.4.0'
Update to upstream version '1.4.0' with Debian dir 64889867df57bd13ea0cb964223697d378d391ce
Diffstat (limited to 'src/fido/credman.h')
-rw-r--r--src/fido/credman.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/fido/credman.h b/src/fido/credman.h
index 1c7cafe..eaffd65 100644
--- a/src/fido/credman.h
+++ b/src/fido/credman.h
@@ -10,8 +10,20 @@
10#include <stdint.h> 10#include <stdint.h>
11#include <stdlib.h> 11#include <stdlib.h>
12 12
13#ifdef _FIDO_INTERNAL
14#include "blob.h"
13#include "fido/err.h" 15#include "fido/err.h"
14#include "fido/param.h" 16#include "fido/param.h"
17#include "fido/types.h"
18#else
19#include <fido.h>
20#include <fido/err.h>
21#include <fido/param.h>
22#endif
23
24#ifdef __cplusplus
25extern "C" {
26#endif /* __cplusplus */
15 27
16#ifdef _FIDO_INTERNAL 28#ifdef _FIDO_INTERNAL
17struct fido_credman_metadata { 29struct fido_credman_metadata {
@@ -71,4 +83,8 @@ void fido_credman_metadata_free(fido_credman_metadata_t **);
71void fido_credman_rk_free(fido_credman_rk_t **); 83void fido_credman_rk_free(fido_credman_rk_t **);
72void fido_credman_rp_free(fido_credman_rp_t **); 84void fido_credman_rp_free(fido_credman_rp_t **);
73 85
86#ifdef __cplusplus
87} /* extern "C" */
88#endif /* __cplusplus */
89
74#endif /* !_FIDO_CREDMAN_H */ 90#endif /* !_FIDO_CREDMAN_H */