aboutsummaryrefslogtreecommitdiff
path: root/src/reclaim/oidc_helper.h
diff options
context:
space:
mode:
authorMartin Schanzenbach <mschanzenbach@posteo.de>2020-08-04 10:09:45 +0200
committerMartin Schanzenbach <mschanzenbach@posteo.de>2020-08-04 10:09:45 +0200
commit080519e980d8f8a3b138c733f837417bdb1b6757 (patch)
tree992d8e5deac776df3b2710b98054041a6d2f23fb /src/reclaim/oidc_helper.h
parentba2050750fcb0b5c7919fda98bca4f7c13a36d14 (diff)
downloadgnunet-080519e980d8f8a3b138c733f837417bdb1b6757.tar.gz
gnunet-080519e980d8f8a3b138c733f837417bdb1b6757.zip
reclaim: do not store access token instead piggyback ticket
Diffstat (limited to 'src/reclaim/oidc_helper.h')
-rw-r--r--src/reclaim/oidc_helper.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/reclaim/oidc_helper.h b/src/reclaim/oidc_helper.h
index 2c533357e..e84087fc3 100644
--- a/src/reclaim/oidc_helper.h
+++ b/src/reclaim/oidc_helper.h
@@ -117,7 +117,12 @@ OIDC_build_token_response (const char *access_token,
117 * Generate a new access token 117 * Generate a new access token
118 */ 118 */
119char* 119char*
120OIDC_access_token_new (); 120OIDC_access_token_new (const struct GNUNET_RECLAIM_Ticket *ticket);
121
122 121
122/**
123 * Parse an access token
124 */
125int
126OIDC_access_token_parse (const char* token,
127 struct GNUNET_RECLAIM_Ticket **ticket);
123#endif 128#endif