[java-idp-plugin-oidc-rp] branch main updated: JOIDCRP-30 - Support PCKE (RFC7636)
Phil Smart
philip.smart at jisc.ac.uk
Fri Apr 5 13:16:40 UTC 2024
This is an automated email from the git hooks/post-receive script.
philsmart pushed a commit to branch main
in repository java-idp-plugin-oidc-rp.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-oidc-rp.git;a=commit;h=760506dcd48f3d37d087ce2276bfa04bda7edfa7
The following commit(s) were added to refs/heads/main by this push:
new 760506d JOIDCRP-30 - Support PCKE (RFC7636)
760506d is described below
commit 760506dcd48f3d37d087ce2276bfa04bda7edfa7
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Fri Apr 5 14:16:38 2024 +0100
JOIDCRP-30 - Support PCKE (RFC7636)
- Add missing code challenge and method to POST velocity form
https://shibboleth.atlassian.net/browse/JOIDCRP-30
---
.../src/main/resources/templates/oidc-request-form-post.vm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/idp-oidc-rp-impl/src/main/resources/templates/oidc-request-form-post.vm b/idp-oidc-rp-impl/src/main/resources/templates/oidc-request-form-post.vm
index eb445e6..1ce5112 100644
--- a/idp-oidc-rp-impl/src/main/resources/templates/oidc-request-form-post.vm
+++ b/idp-oidc-rp-impl/src/main/resources/templates/oidc-request-form-post.vm
@@ -45,7 +45,11 @@
<input type="hidden" name="claims" value="${claims}" />#end #if($nonce)
- <input type="hidden" name="nonce" value="${nonce}" />#end
+ <input type="hidden" name="nonce" value="${nonce}" />#end #if($code_challenge)
+
+ <input type="hidden" name="code_challenge" value="${code_challenge}" />#end #if($code_challenge_method)
+
+ <input type="hidden" name="code_challenge_method" value="${code_challenge_method}" />#end
</div>
<noscript>
<div>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list