Skip to content
Snippets Groups Projects
Commit 45e92764 authored by Thijs Kinkhorst's avatar Thijs Kinkhorst
Browse files

Document how to re-enable sha1 for a specific remote entity.

parent 21d4b108
No related branches found
No related tags found
No related merge requests found
......@@ -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`.
......
......@@ -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',
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment