diff options
author | Andreas Reiter <andreas.reiter@iaik.tugraz.at> | 2014-02-27 18:31:06 +0100 |
---|---|---|
committer | Andreas Reiter <andreas.reiter@iaik.tugraz.at> | 2014-02-27 18:31:06 +0100 |
commit | 550177c54ce258715177a28f2d2d78812bf745fd (patch) | |
tree | c77029f1a269e13fd6c7653d8917e5fabfa306fe /id/server/stork2-saml-engine | |
parent | 27b4ca05aeac39b0a180a13e44ed354e80fb47dd (diff) | |
download | moa-id-spss-550177c54ce258715177a28f2d2d78812bf745fd.tar.gz moa-id-spss-550177c54ce258715177a28f2d2d78812bf745fd.tar.bz2 moa-id-spss-550177c54ce258715177a28f2d2d78812bf745fd.zip |
Added signeddoc attribute provider plugin
Diffstat (limited to 'id/server/stork2-saml-engine')
-rw-r--r-- | id/server/stork2-saml-engine/src/main/java/eu/stork/peps/auth/engine/core/impl/SignSW.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/id/server/stork2-saml-engine/src/main/java/eu/stork/peps/auth/engine/core/impl/SignSW.java b/id/server/stork2-saml-engine/src/main/java/eu/stork/peps/auth/engine/core/impl/SignSW.java index 4554a9586..6652560bd 100644 --- a/id/server/stork2-saml-engine/src/main/java/eu/stork/peps/auth/engine/core/impl/SignSW.java +++ b/id/server/stork2-saml-engine/src/main/java/eu/stork/peps/auth/engine/core/impl/SignSW.java @@ -426,16 +426,16 @@ public class SignSW implements SAMLEngineSignI { final BasicX509Credential entityX509Cred = new BasicX509Credential();
entityX509Cred.setEntityCertificate(cert);
- try {
- cert.checkValidity();
- }
- catch (CertificateExpiredException exp) {
- throw new SAMLEngineException("Certificate expired.");
- }
- catch (CertificateNotYetValidException exp) {
- throw new SAMLEngineException("Certificate not yet valid.");
- }
-
+// try {
+// cert.checkValidity();
+// }
+// catch (CertificateExpiredException exp) {
+// throw new SAMLEngineException("Certificate expired.");
+// }
+// catch (CertificateNotYetValidException exp) {
+// throw new SAMLEngineException("Certificate not yet valid.");
+// }
+//
boolean trusted = false;
for (final Enumeration<String> e = storkOwnKeyStore.aliases(); e.hasMoreElements();)
|