Skip to content
Snippets Groups Projects
Commit f1ead3e3 authored by Mads Freek Petersen's avatar Mads Freek Petersen
Browse files

Fix of issue 94. The EncryptionMethod label was wrong.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@633 44740490-163a-0410-bde0-09ae8108e29a
parent 7cd598be
No related branches found
No related tags found
No related merge requests found
...@@ -172,7 +172,7 @@ class SimpleSAML_Bindings_SAML20_HTTPPost { ...@@ -172,7 +172,7 @@ class SimpleSAML_Bindings_SAML20_HTTPPost {
throw new Exception("Public key for encrypting assertion specified but not found for saml20-sp-remote id: " . $spentityid . " Filename: " . $spmd['certificate']); throw new Exception("Public key for encrypting assertion specified but not found for saml20-sp-remote id: " . $spentityid . " Filename: " . $spmd['certificate']);
} }
$keyKey = new XMLSecurityKey(XMLSecurityKey::RSA_SHA1, array('type'=>'public')); $keyKey = new XMLSecurityKey(XMLSecurityKey::RSA_1_5, array('type'=>'public'));
$keyKey->loadKey($sp_publiccert); $keyKey->loadKey($sp_publiccert);
......
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