Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/user_saml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-02-05 20:03:42 +0300
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2020-02-14 13:51:58 +0300
commit053f851405e8c3ee58c2c6d3712dd400285f61d3 (patch)
treea5cc29b39d30ce2cbab46526a4cefa8269cbd1f3 /lib/SAMLSettings.php
parentee15d4ae9cafab99db1ba9179d21c5cd8a09f75e (diff)
Add setting to specify a different signature algorithm
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib/SAMLSettings.php')
-rw-r--r--lib/SAMLSettings.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/SAMLSettings.php b/lib/SAMLSettings.php
index 0cde99a6..cee5f092 100644
--- a/lib/SAMLSettings.php
+++ b/lib/SAMLSettings.php
@@ -119,6 +119,7 @@ class SAMLSettings {
'wantXMLValidation' => ($this->config->getAppValue('user_saml', $prefix . 'security-wantXMLValidation', '0') === '1') ? true : false,
'requestedAuthnContext' => false,
'lowercaseUrlencoding' => ($this->config->getAppValue('user_saml', $prefix . 'security-lowercaseUrlencoding', '0') === '1') ? true : false,
+ 'signatureAlgorithm' => $this->config->getAppValue('user_saml', $prefix . 'security-signatureAlgorithm', null)
],
'sp' => [
'entityId' => $this->urlGenerator->linkToRouteAbsolute('user_saml.SAML.getMetadata'),