aboutsummaryrefslogtreecommitdiff
path: root/src/reclaim/oidc_helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/reclaim/oidc_helper.h')
-rw-r--r--src/reclaim/oidc_helper.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/reclaim/oidc_helper.h b/src/reclaim/oidc_helper.h
index b134c71ad..81eadf2ed 100644
--- a/src/reclaim/oidc_helper.h
+++ b/src/reclaim/oidc_helper.h
@@ -50,14 +50,14 @@ enum OIDC_VerificationOptions
50}; 50};
51 51
52/** 52/**
53 * Create a JWT using RSA256 from attributes 53 * Create a JWT using RSA256 algorithm from attributes
54 * 54 *
55 * @param aud_key the public of the audience 55 * @param aud_key the public of the audience
56 * @param sub_key the public key of the subject 56 * @param sub_key the public key of the subject
57 * @param attrs the attribute list 57 * @param attrs the attribute list
58 * @param presentations credential presentation list (may be empty) 58 * @param presentations credential presentation list (may be empty)
59 * @param expiration_time the validity of the token 59 * @param expiration_time the validity of the token
60 * @param secret_key the key used to sign the JWT 60 * @param secret_rsa_key the key used to sign the JWT
61 * @return a new base64-encoded JWT string. 61 * @return a new base64-encoded JWT string.
62 */ 62 */
63char * 63char *
@@ -162,7 +162,7 @@ OIDC_access_token_new (const struct GNUNET_RECLAIM_Ticket *ticket);
162 * Parse an access token 162 * Parse an access token
163 */ 163 */
164int 164int
165OIDC_access_token_parse (const char*token, 165OIDC_access_token_parse (const char *token,
166 struct GNUNET_RECLAIM_Ticket **ticket); 166 struct GNUNET_RECLAIM_Ticket **ticket);
167 167
168 168