diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2019-02-12 12:34:14 +0100 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2019-02-12 12:34:14 +0100 |
commit | 087e317a0633eb761f2a9361c4a10a75680fc742 (patch) | |
tree | f824ea848faf17be0a714c1483232e0ca4f3bb6a /id | |
parent | f00f82ec9f0f1e4210d17b857cab44e49357daca (diff) | |
download | moa-id-spss-087e317a0633eb761f2a9361c4a10a75680fc742.tar.gz moa-id-spss-087e317a0633eb761f2a9361c4a10a75680fc742.tar.bz2 moa-id-spss-087e317a0633eb761f2a9361c4a10a75680fc742.zip |
fix bug in UseStandardTrustStore flag
remove unnecessary maven dependency
Diffstat (limited to 'id')
-rw-r--r-- | id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/utils/ssl/SSLUtils.java | 2 | ||||
-rw-r--r-- | id/server/modules/moa-id-modules-saml1/pom.xml | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/utils/ssl/SSLUtils.java b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/utils/ssl/SSLUtils.java index a96daead3..8aaf94fad 100644 --- a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/utils/ssl/SSLUtils.java +++ b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/utils/ssl/SSLUtils.java @@ -154,7 +154,7 @@ public class SSLUtils { //initialize own trust-store implementation TrustManager[] tms = null; - if (useStandardJavaTrustStore) { + if (!useStandardJavaTrustStore) { tms = getTrustManagers( certStoreRootDirParam, chainingMode, diff --git a/id/server/modules/moa-id-modules-saml1/pom.xml b/id/server/modules/moa-id-modules-saml1/pom.xml index 8b232cf29..3a401d80e 100644 --- a/id/server/modules/moa-id-modules-saml1/pom.xml +++ b/id/server/modules/moa-id-modules-saml1/pom.xml @@ -38,10 +38,10 @@ <!-- Only for development to use SAML1 protocol SAML1 is removed from official OPB release --> - <dependency> +<!-- <dependency> <groupId>MOA.id.server.modules</groupId> <artifactId>moa-id-module-eIDAS</artifactId> - </dependency> + </dependency> --> <!-- <dependency> <groupId>MOA</groupId> @@ -62,10 +62,10 @@ <artifactId>moa-id-modul-citizencard_authentication</artifactId> </dependency> - <dependency> +<!-- <dependency> <groupId>MOA.id.server.modules</groupId> <artifactId>moa-id-module-eIDAS</artifactId> - </dependency> + </dependency> --> <dependency> <groupId>junit</groupId> |