Skip to content
Snippets Groups Projects
Unverified Commit 92b83529 authored by Martin Weise's avatar Martin Weise
Browse files

Somehow successful response but errors in validation

parent 6d9d9758
Branches
Tags
4 merge requests!81New stable release,!43Merge dev to master,!33Draft: merge dev to master,!30Resolve "Refactor: fix all TODOs and FIXMEs in the backend"
......@@ -32,3 +32,7 @@ sudo keytool -noprompt -importkeystore -deststorepass "${KEY_STORE_PASS}" -destk
sudo keytool -noprompt -importkeystore -deststorepass "${KEY_STORE_PASS}" -destkeypass "${KEY_STORE_PASS}" \
-destkeystore "${KEY_STORE_LOCATION}" -srckeystore "${TMP_SAML_LOCATION}" -srcstoretype PKCS12 \
-srcstorepass "${KEY_STORE_PASS}" -alias 1 -destalias saml
# TRUST LET'S ENCRYPT
sudo keytool -noprompt -import -alias letsencrypt -keystore "${KEY_STORE_LOCATION}" \
-file "${CERT_LOCATION}/chain.pem"
\ No newline at end of file
......@@ -172,7 +172,7 @@ public class SamlConfig extends WebSecurityConfigurerAdapter {
ExtendedMetadataDelegate extendedMetadataDelegate = new ExtendedMetadataDelegate(metadataProvider(),
extendedMetadata());
extendedMetadataDelegate.setMetadataTrustCheck(true);
extendedMetadataDelegate.setMetadataRequireSignature(false);
extendedMetadataDelegate.setMetadataRequireSignature(true);
return extendedMetadataDelegate;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment