Skip to content

Commit 48b9d8b

Browse files
committed
Fixes to reflect upstream changes in xml-security
1 parent 0faddd5 commit 48b9d8b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/XML/SignableElementTrait.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
use SimpleSAML\XMLSecurity\Constants as C;
1515
use SimpleSAML\XMLSecurity\Exception\RuntimeException;
1616
use SimpleSAML\XMLSecurity\Exception\UnsupportedAlgorithmException;
17-
use SimpleSAML\XMLSecurity\Utils\XML;
1817
use SimpleSAML\XMLSecurity\XML\ds\CanonicalizationMethod;
1918
use SimpleSAML\XMLSecurity\XML\ds\KeyInfo;
2019
use SimpleSAML\XMLSecurity\XML\ds\Signature;
@@ -109,7 +108,7 @@ protected function doSign(DOMElement $xml): DOMElement
109108
new Transform(AnyURIValue::fromString($this->c14nAlg)),
110109
]);
111110

112-
$canonicalDocument = XML::processTransforms($transforms, $xml);
111+
$canonicalDocument = $this->processTransforms($transforms, $xml);
113112

114113
$signedInfo = new SignedInfo(
115114
new CanonicalizationMethod(AnyURIValue::fromString($this->c14nAlg)),

0 commit comments

Comments
 (0)