<ds:KeyInfo>
<ds:X509Data>
<ds:X509Certificate>MIIDL.....TCC==</ds:X509Certificate>
</ds:X509Data>
</ds:KeyInfo>
However, in CAS 5.2.0-RC3, the keyInfo in saml2p:Response will be change like these:
<ds:KeyInfo>
<ds:KeyValue>
<ds:RSAKeyValue>
<ds:Modulus>nv......==</ds:Modulus>
<ds:Exponent>AQAB</ds:Exponent>
</ds:RSAKeyValue>
</ds:KeyValue>
<ds11:DEREncodedKeyValue xmlns:ds11="http://www.w3.org/2009/xmldsig11#">MII.......QAB</ds11:DEREncodedKeyValue>
</ds:KeyInfo>
----------------------------------------------------------------------------------------------------------------------------------------------------------------
Would like to know if there is any configure to force the KeyInfo to show X509Data, so my SAML 2.0 sp can read the KeyInfo, thanks!
-Andy
<ds:KeyInfo> <ds:X509Data><ds:X509Certificate>MIIDL.....TCC==</ds:X509Certificate></ds:X509Data></ds:KeyInfo>
To
<ds:KeyInfo> <ds:KeyValue><ds:RSAKeyValue><ds:Modulus>nv......==</ds:Modulus><ds:Exponent>AQAB</ds:Exponent></ds:RSAKeyValue></ds:KeyValue><ds11:DEREncodedKeyValue xmlns:ds11="http://www.w3.org/2009/xmldsig11#">MII.......QAB</ds11:DEREncodedKeyValue></ds:KeyInfo>
I think I would try to contribute to CAS so that in CAS 5.2.0-RC4 there is option to choice which Credential I want to export.
-Andy