You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "x5c" (X.509 certificate chain) parameter contains a chain of one
or more PKIX certificates [RFC5280]. The certificate chain is
represented as a JSON array of certificate value strings. Each
string in the array is a base64-encoded (Section 4 of [RFC4648] --
not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value.
However the logic in openidc_pem_from_x5c(x5c), is performing a openidc_base64_url_decode on the payload, then base64 it again.
The text was updated successfully, but these errors were encountered:
from the specification, https://www.rfc-editor.org/rfc/rfc7517#section-4.7
However the logic in
openidc_pem_from_x5c(x5c)
, is performing a openidc_base64_url_decode on the payload, then base64 it again.The text was updated successfully, but these errors were encountered: