XML-Security / signxml

Python XML Signature and XAdES library
https://xml-security.github.io/signxml/
Apache License 2.0
137 stars 107 forks source link

OpenSSL Verify is deprecated #259

Closed RoryPTB closed 1 month ago

RoryPTB commented 2 months ago

I am getting this warning when using signxml 3.2.2:

venv\Lib\site-packages\signxml\verifier.py:13: DeprecationWarning: verify() is deprecated. Use the equivalent APIs in cryptography.
    from OpenSSL.crypto import verify as openssl_verify

Is it possible to move away from this deprecated dependency?

kislyuk commented 1 month ago

See #141

RoryPTB commented 1 month ago

Thank you