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
LogoutRequest initiated from RP doesn't contain KeyInfo section. The same was fixed in #9746 by @fhanik for AuthRequest and merged by @jzheaux in main but there are two versions of OpenSamlSigningUtils
org.springframework.security.saml2.provider.service.authentication.OpenSamlSigningUtils and org.springframework.security.saml2.provider.service.web.authentication.logout.OpenSamlSigningUtils
The first one has signingConfiguration.setKeyInfoGeneratorManager(buildSignatureKeyInfoGeneratorManager()) in resolveSigningParameters but the second hasn't. I checked 5.6.0-RC1.
Just adding the same signingConfiguration.setKeyInfoGeneratorManager(buildSignatureKeyInfoGeneratorManager()) in resolveSigningParameters
LogoutRequest initiated from RP doesn't contain KeyInfo section. The same was fixed in #9746 by @fhanik for AuthRequest and merged by @jzheaux in main but there are two versions of
OpenSamlSigningUtils
org.springframework.security.saml2.provider.service.authentication.OpenSamlSigningUtils
andorg.springframework.security.saml2.provider.service.web.authentication.logout.OpenSamlSigningUtils
The first one has
signingConfiguration.setKeyInfoGeneratorManager(buildSignatureKeyInfoGeneratorManager())
inresolveSigningParameters
but the second hasn't. I checked 5.6.0-RC1.Just adding the same
signingConfiguration.setKeyInfoGeneratorManager(buildSignatureKeyInfoGeneratorManager()) in resolveSigningParameters
and the same
private static NamedKeyInfoGeneratorManager buildSignatureKeyInfoGeneratorManager() { ... }
fixes the issue.
The text was updated successfully, but these errors were encountered: