You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the same xmlsec.Key.from_file code to load a p12 key works for python-xmlsec==1.3.14 and xmlsec==1.3.6 (using Alpine linux 3.20), but it does not work for python-xmlsec==1.3.15 and xmlsec==1.3.7 (using Alpine linux 3.21).
Getting a Error: (1, 'cannot read key') error message.
Not sure how to determine if this is an issue with python-xmlsec or xmlsec itself, but happy to help if pointed in the right direction.
Uh oh!
There was an error while loading. Please reload this page.
Hi! I have a problem, when I do this:
key = xmlsec.Key.from_file(p12_path, xmlsec.constants.KeyDataFormatPkcs12, password=pass)
The file .p12 I can extract the private key and certificate whit this:
private_key, certificate, additional_certs = pkcs12.load_key_and_certificates(p12_data, clave.encode("utf-8"))
print("🔐 Private key:", private_key)
And then it print: <cryptography.hazmat.bindings._rust.openssl.rsa.RSAPrivateKey object at 0x73e07a4763d0>
Then, the path is fine, and the file also. What do I am doing wrong? Help, thanks
The text was updated successfully, but these errors were encountered: