I was reading the spring security saml doc site: http://docs.spring.io/autorepo/docs/spring-security-saml/1.0.x-SNAPSHOT/reference/htmlsingle/#configuration-security-profiles-pkix
I am just having a hard time to understand how the pkix profile works.
From my understanding, when idp sends back saml response, it will sign the response to show the validity of the message.
In metaiop, the SP will use the key from idp's metadata to verfiy signature on response.
Pkix seems like an extension of metaiop, it will do metaiop's check and also this:
All keys specified in trustedKeys set of extended metadata of a remote entity, or all keys available in the key store when the property is null (default value)
I just don't understand the above statement, what is the key store referred to in here? the local keystore?
I hope someone can clearify for me.