Hi, I’m struggling with AuthnContextClassRef.
I have an SP the request a AuthnContextClassRef from SSP,
SSP uses an external IDP for this, but that external IDP don’t have the AuthnContextClassRef that is originally requested.
So, I thought that I in authsources.php could add the following to authsources.php.
#To generate the respons back to the SP
'authproc' => [
90 => [
'class' => 'saml:AuthnContextClassRef',
'AuthnContextClassRef' => 'urn:oasis:names:tc:SAML:2.0:ac:classes:loa2',
],
],
# And this to request the correct ACCR from the IDP
'AuthnContextClassRef' => 'urn:oasis:names:tc:SAML:2.0:ac:classes:loa3',
The steps.
Result:
The original ACCR is sent to the external IDP.
Is it not possible? Or what am I doing wrong?
/ Joakim