summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2021-04-26 10:27:06 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2021-04-26 10:27:06 +0200
commit00f935e43df6f8c2129cb80992c35f5d0423901e (patch)
tree44bc94f984dfdf952d5659691280fd5d1cbea1ff
parentcef6317f17a706647c0a5d5f7e52548a7130b713 (diff)
-fix build reclaim
-rw-r--r--src/reclaim/plugin_reclaim_credential_pabc.c82
1 files changed, 7 insertions, 75 deletions
diff --git a/src/reclaim/plugin_reclaim_credential_pabc.c b/src/reclaim/plugin_reclaim_credential_pabc.c
index 2f6b7b8c4..89acd9032 100644
--- a/src/reclaim/plugin_reclaim_credential_pabc.c
+++ b/src/reclaim/plugin_reclaim_credential_pabc.c
@@ -228,50 +228,6 @@ pabc_parse_attributes_p (void *cls,
return pabc_parse_attributes (cls, cred->data, cred->data_size);
}
-struct Finder
-{
- const char* target;
- char *result;
-};
-
-static void
-find_attr (char const *const key,
- char const *const value,
- void *ctx)
-{
- struct Finder *fdr = ctx;
- GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
- "Found `%s', looking for `%s'\n",
- key, fdr->target);
- if (0 == strcmp (key, fdr->target))
- fdr->result = GNUNET_strdup (value);
-}
-
-
-
-/**
- * Parse a pabc and return an attribute value.
- *
- * @param cls the plugin
- * @param data the pabc credential data
- * @param data_size the pabc credential size
- * @param skey the attribute key to look for.
- * @return a string, containing the isser
- */
-char *
-pabc_get_attribute (void *cls,
- const char *data,
- size_t data_size,
- const char *skey)
-{
-
- struct Finder fdr;
- memset (&fdr, 0, sizeof (fdr));
- fdr.target = skey;
- pabc_cred_inspect_credential (data, &find_attr, &fdr);
- return fdr.result;
-}
-
/**
* Parse a pabc and return the issuer
@@ -301,22 +257,6 @@ pabc_get_issuer (void *cls,
* @param cred the pabc credential
* @return a string, containing the isser
*/
-char*
-pabc_get_issuer (void *cls,
- const char *data,
- size_t data_size)
-{
- return pabc_get_attribute (cls, data, data_size, "issuer");
-}
-
-
-/**
- * Parse a pabc and return the issuer
- *
- * @param cls the plugin
- * @param cred the pabc credential
- * @return a string, containing the isser
- */
char *
pabc_get_issuer_c (void *cls,
const struct GNUNET_RECLAIM_Credential *cred)
@@ -351,27 +291,19 @@ pabc_get_issuer_p (void *cls,
* @param cred the pabc credential
* @return a string, containing the isser
*/
-int
+enum GNUNET_GenericReturnValue
pabc_get_expiration (void *cls,
const char *data,
size_t data_size,
struct GNUNET_TIME_Absolute *exp)
{
- json_t *json_root;
- json_t *json_attrs;
- json_t *value;
- json_t *exp_j;
- json_error_t *json_err = NULL;
- const char*key;
-
- json_root = json_loads (data, JSON_DECODE_ANY, json_err);
- if ((NULL == json_root) ||
- (! json_is_object (json_root)))
- {
- GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
- "Unable to retrive expiration from credential\n");
+ char *exp_str;
+ uint64_t exp_i;
+
+ if (PABC_OK != pabc_cred_get_attr_by_name_from_cred (data,
+ "expiration",
+ &exp_str))
return GNUNET_SYSERR;
- }
if (1 != sscanf (exp_str, "%llu", &exp_i))
{