2019-03-24 00:15:29 +00:00
|
|
|
#ifndef WSFS_ADAPTER_IMPL_CREDENTIALS_H
|
|
|
|
#define WSFS_ADAPTER_IMPL_CREDENTIALS_H
|
|
|
|
|
|
|
|
#include <jansson.h>
|
|
|
|
|
2019-03-24 01:10:03 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2019-03-24 00:15:29 +00:00
|
|
|
struct wsfs_credentials
|
|
|
|
{
|
|
|
|
char * type;
|
|
|
|
json_t * data;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern void wsfs_impl_credentials_init(
|
|
|
|
struct wsfs_credentials * credentials,
|
|
|
|
char const * type,
|
|
|
|
json_t * data);
|
|
|
|
|
|
|
|
extern void wsfs_impl_credentials_cleanup(
|
|
|
|
struct wsfs_credentials * credentials);
|
|
|
|
|
|
|
|
extern char const * wsfs_impl_credentials_type(
|
|
|
|
struct wsfs_credentials const * credentials);
|
|
|
|
|
|
|
|
extern char const * wsfs_impl_credentials_get(
|
|
|
|
struct wsfs_credentials const * credentials,
|
|
|
|
char const * key);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|