File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1+ 01/13/2023
2+ - when parsing JWKs with an x5c claim the claim was wronly assumed to
3+ be base64url encoded instead of base64 encoded;
4+ see #460
5+
1611/06/2022
27- a new option local_redirect_path can be used is situations where the
38 redirect_uri as is visible to lua-resty-openidc is not simply the path
Original file line number Diff line number Diff line change 844844
845845local function openidc_pem_from_x5c (x5c )
846846 log (DEBUG , " Found x5c, getting PEM public key from x5c entry of json public key" )
847- local chunks = split_by_chunk (b64 ( openidc_base64_url_decode ( x5c [1 ])) , 64 )
847+ local chunks = split_by_chunk (x5c [1 ], 64 )
848848 local pem = " -----BEGIN CERTIFICATE-----\n " ..
849849 table.concat (chunks , " \n " ) ..
850850 " \n -----END CERTIFICATE-----"
You can’t perform that action at this time.
0 commit comments