Skip to content

Commit

Permalink
add a nonce parameter to the DPoP API
Browse files Browse the repository at this point in the history
Signed-off-by: Hans Zandbelt <hans.zandbelt@openidc.com>
  • Loading branch information
zandbelt committed Jun 7, 2024
1 parent bdb1e2b commit 191b069
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/handle/dpop.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,14 @@
#include "util.h"

#define OIDC_DPOP_PARAM_URL "url"
#define OIDC_DPOP_PARAM_NONCE "nonce"
#define OIDC_DPOP_PARAM_METHOD "method"

int oidc_dpop_request(request_rec *r, oidc_cfg_t *c, oidc_session_t *session) {
int rc = HTTP_BAD_REQUEST;
char *s_url = NULL;
char *s_access_token = NULL;
char *s_nonce = NULL;
const char *session_access_token = NULL;
char *s_method = NULL;
char *s_dpop = NULL;
Expand Down Expand Up @@ -87,6 +89,9 @@ int oidc_dpop_request(request_rec *r, oidc_cfg_t *c, oidc_session_t *session) {
goto end;
}

/* retrieve the optional nonce parameter */
oidc_util_request_parameter_get(r, OIDC_DPOP_PARAM_NONCE, &s_nonce);

/* parse the optional HTTP method parameter */
oidc_util_request_parameter_get(r, OIDC_DPOP_PARAM_METHOD, &s_method);
if (_oidc_strnatcasecmp(s_method, "post") == 0)
Expand Down Expand Up @@ -114,7 +119,7 @@ int oidc_dpop_request(request_rec *r, oidc_cfg_t *c, oidc_session_t *session) {
}

/* create the DPoP header value */
s_dpop = oidc_proto_dpop_create(r, c, s_url, s_method, s_access_token, NULL);
s_dpop = oidc_proto_dpop_create(r, c, s_url, s_method, s_access_token, s_nonce);
if (s_dpop == NULL) {
oidc_error(r, "creating the DPoP proof value failed");
rc = HTTP_INTERNAL_SERVER_ERROR;
Expand Down

0 comments on commit 191b069

Please sign in to comment.