File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -624,6 +624,7 @@ public function decryptNameId(XMLSecurityKey $key) {
624624 }
625625
626626 $ nameId = SAML2_Utils::decryptElement ($ this ->encryptedNameId , $ key );
627+ SimpleSAML_Utilities::debugMessage ($ nameId , 'decrypt ' );
627628 $ this ->nameId = SAML2_Utils::parseNameId ($ nameId );
628629
629630 $ this ->encryptedNameId = NULL ;
Original file line number Diff line number Diff line change @@ -99,6 +99,7 @@ public function encryptNameId(XMLSecurityKey $key) {
9999 SAML2_Utils::addNameId ($ root , $ this ->nameId );
100100 $ nameId = $ root ->firstChild ;
101101
102+ SimpleSAML_Utilities::debugMessage ($ nameId , 'encrypt ' );
102103
103104 /* Encrypt the NameID. */
104105 $ enc = new XMLSecEnc ();
@@ -127,6 +128,7 @@ public function decryptNameId(XMLSecurityKey $key) {
127128 }
128129
129130 $ nameId = SAML2_Utils::decryptElement ($ this ->encryptedNameId , $ key );
131+ SimpleSAML_Utilities::debugMessage ($ nameId , 'decrypt ' );
130132 $ this ->nameId = SAML2_Utils::parseNameId ($ nameId );
131133
132134 $ this ->encryptedNameId = NULL ;
You can’t perform that action at this time.
0 commit comments