Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
simplesamlphp
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Perun
Perun ProxyIdP
v1
simplesamlphp
Commits
45e92764
Commit
45e92764
authored
6 years ago
by
Thijs Kinkhorst
Browse files
Options
Downloads
Patches
Plain Diff
Document how to re-enable sha1 for a specific remote entity.
parent
21d4b108
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/simplesamlphp-upgrade-notes-1.16.md
+2
-1
2 additions, 1 deletion
docs/simplesamlphp-upgrade-notes-1.16.md
metadata-templates/saml20-sp-remote.php
+14
-0
14 additions, 0 deletions
metadata-templates/saml20-sp-remote.php
with
16 additions
and
1 deletion
docs/simplesamlphp-upgrade-notes-1.16.md
+
2
−
1
View file @
45e92764
...
...
@@ -3,7 +3,8 @@ Upgrade notes for SimpleSAMLphp 1.16
The default signature algoritm is now SHA-256 (SHA-1 has been considered
obsolete since 2014). For entities that need it, you can switch back to
SHA-1 by setting the
`signature.algorithm`
option in the entity metadata.
SHA-1 by setting the
`signature.algorithm`
option in the remote entity
metadata.
The class
`SimpleSAML_Error_BadUserInnput`
has been renamed to
`SimpleSAML_Error_BadUserInput`
.
...
...
This diff is collapsed.
Click to expand it.
metadata-templates/saml20-sp-remote.php
+
14
−
0
View file @
45e92764
...
...
@@ -25,3 +25,17 @@ $metadata['google.com'] = array(
'simplesaml.nameidattribute'
=>
'uid'
,
'simplesaml.attributes'
=>
FALSE
,
);
$metadata
[
'https://legacy.example.edu'
]
=
array
(
'AssertionConsumerService'
=>
'https://legacy.example.edu/saml/acs'
,
/*
* Currently, SimpleSAMLphp defaults to the SHA-256 hashing algorithm.
* Uncomment the following option to use SHA-1 for signatures directed
* at this specific service provider if it does not support SHA-256 yet.
*
* WARNING: SHA-1 is disallowed starting January the 1st, 2014.
* Please refer to the following document for more information:
* http://csrc.nist.gov/publications/nistpubs/800-131A/sp800-131A.pdf
*/
//'signature.algorithm' => 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha1',
);
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment