Replies: 1 comment 1 reply
-
I would opt for a data structure ala: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the Original lib/Net/SAML2/Idp.pm: the certs are a HashRef[Str]
With Multiple Certs support in lib/Net/SAML2/Idp.pm there may be multiple certificate in the metadata as read in from the XML so the certs are now a an array of hashrefs: ArrayRef[HashRef[Str]]
However the BUILDARGS validates each certificate with the given cacert and, if it cannot be validated, does not include it in the
valid IdP certs
This looks to be the correct approach to avoid breaking existing applications. The Redirect changes I need to go through again
Beta Was this translation helpful? Give feedback.
All reactions