| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 37 | public function decrypt(XMLSecurityKey $key, array $blacklist = []): AbstractXMLElement |
||
| 38 | { |
||
| 39 | $assertionXML = Utils::decryptElement($this->encryptedData->toXML(), $key, $blacklist); |
||
| 40 | |||
| 41 | Utils::getContainer()->debugMessage($assertionXML, 'decrypt'); |
||
| 42 | |||
| 43 | return new Assertion($assertionXML); |
||
|
1 ignored issue
–
show
|
|||
| 44 | } |
||
| 55 |