aboutsummaryrefslogtreecommitdiff
path: root/src/service/rest/oidc_helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/service/rest/oidc_helper.h')
-rw-r--r--src/service/rest/oidc_helper.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/service/rest/oidc_helper.h b/src/service/rest/oidc_helper.h
index 3e180f673..1732a044b 100644
--- a/src/service/rest/oidc_helper.h
+++ b/src/service/rest/oidc_helper.h
@@ -159,14 +159,16 @@ OIDC_build_token_response (const char *access_token,
159 * Generate a new access token 159 * Generate a new access token
160 */ 160 */
161char* 161char*
162OIDC_access_token_new (const struct GNUNET_RECLAIM_Ticket *ticket); 162OIDC_access_token_new (const struct GNUNET_RECLAIM_Ticket *ticket,
163 const char *rp_uri);
163 164
164/** 165/**
165 * Parse an access token 166 * Parse an access token
166 */ 167 */
167int 168int
168OIDC_access_token_parse (const char *token, 169OIDC_access_token_parse (const char *token,
169 struct GNUNET_RECLAIM_Ticket **ticket); 170 struct GNUNET_RECLAIM_Ticket **ticket,
171 char **rp_uri);
170 172
171 173
172/** 174/**