Sto provando a firmare un file XML utilizzando pyxmlsec/xmlsec/libxml2 ma non riesce (sigCtx->signValueNode == NULL:error=100:assertion
).Il segno xmlsec1 funziona su riga di comando ma non riesce sul codice Python
Quando eseguo da linea di comando funziona senza intoppi:
codicexmlsec1 sign --output signed.xml --pkcs12 c.pfx --pwd mypwd tobesigned.xml
mio Python:
libxml2.initParser()
libxml2.substituteEntitiesDefault(1)
xmlsec.init()
xmlsec.cryptoAppInit(None)
xmlsec.cryptoInit()
doc_xml = libxml2.parseMemory(xml, len(xml))
signature_node = xmlsec.findNode(
doc_xml.getRootElement(),
xmlsec.NodeSignature,
xmlsec.DSigNs,
)
signer = xmlsec.DSigCtx()
key = xmlsec.cryptoAppKeyLoad(
filename=str(self.issuer.certificate.path),
format=xmlsec.KeyDataFormatPkcs12,
pwd=str(self.issuer.certificate_password),
pwdCallback=None,
pwdCallbackCtx=None,
)
signer.signKey = key
signer.sign(signature_node) # error!
...
completa Traccia di errore:
func=xmlSecDSigCtxProcessSignatureNode:file=xmldsig.c:line=463:obj=unknown:subj=dsigCtx->signValueNode == NULL:error=100:assertion:
func=xmlSecDSigCtxSign:file=xmldsig.c:line=303:obj=unknown:subj=xmlSecDSigCtxSigantureProcessNode:error=1:xmlsec library function failed:
Qualche consiglio?
Grazie!
Forcella fissa: https://github.com/aricaldeira/pyxmlsec – alanjds