[java-xmltooling COMMIT] in /branches/REL_1: doc/RELEASE-NOTES.txt src/main/java/org/opensaml/xml/security/DefaultSec...
noreply at shibboleth.net
noreply at shibboleth.net
Fri Jan 30 16:19:40 EST 2015
Author: putmanb
Date: Fri Jan 30 16:19:39 2015
New Revision: 845
URL: http://svn.shibboleth.net/view/java-xmltooling?rev=845&view=rev
Log:
JXT-116: Default config for X509Credential KeyInfo generation should emit cert chain in addition to entity cert
Modified:
branches/REL_1/doc/RELEASE-NOTES.txt
branches/REL_1/src/main/java/org/opensaml/xml/security/DefaultSecurityConfigurationBootstrap.java
Modified: branches/REL_1/doc/RELEASE-NOTES.txt
URL: http://svn.shibboleth.net/view/java-xmltooling/branches/REL_1/doc/RELEASE-NOTES.txt?rev=845&r1=844&r2=845&view=diff
==============================================================================
--- branches/REL_1/doc/RELEASE-NOTES.txt (original)
+++ branches/REL_1/doc/RELEASE-NOTES.txt Fri Jan 30 16:19:39 2015
@@ -1,3 +1,7 @@
+Changes in Release 1.4.5
+=============================================
+[JXT-116] - Default config for X509Credential KeyInfo generation should emit cert chain in addition to entity cert
+
Changes in Release 1.4.4
=============================================
Update Apache Santuario (xmlsec) to 1.5.7
Modified: branches/REL_1/src/main/java/org/opensaml/xml/security/DefaultSecurityConfigurationBootstrap.java
URL: http://svn.shibboleth.net/view/java-xmltooling/branches/REL_1/src/main/java/org/opensaml/xml/security/DefaultSecurityConfigurationBootstrap.java?rev=845&r1=844&r2=845&view=diff
==============================================================================
--- branches/REL_1/src/main/java/org/opensaml/xml/security/DefaultSecurityConfigurationBootstrap.java (original)
+++ branches/REL_1/src/main/java/org/opensaml/xml/security/DefaultSecurityConfigurationBootstrap.java Fri Jan 30 16:19:39 2015
@@ -144,6 +144,7 @@
// Generator for X509Credentials
X509KeyInfoGeneratorFactory x509Factory = new X509KeyInfoGeneratorFactory();
x509Factory.setEmitEntityCertificate(true);
+ x509Factory.setEmitEntityCertificateChain(true);
defaultManager.registerFactory(basicFactory);
defaultManager.registerFactory(x509Factory);
More information about the commits
mailing list