selective-php / xmldsig

Sign XML Documents with Digital Signatures
MIT License
73 stars 34 forks source link

$signatureValue is not defined #12

Closed ArmenMelk closed 2 years ago

ArmenMelk commented 2 years ago

XmlSigner.php 432 line $signatureValue is not defined, or I miss something.

odan commented 2 years ago

The second parameter of the openssl_sign function is passed by reference (string &$signature,).

https://www.php.net/manual/en/function.openssl-sign.php

Where do you get this warning?

ArmenMelk commented 2 years ago

All is fine thank you.