capsula-gemini/source/notes/xmlsec.gmi

14 lines
237 B
Plaintext

# xmlsec
* Firmar
```
xmlsec1 --sign --output doc-signed.xml --privkey-pem cert.key.pem doc.xml
```
* Firmar con PFX
```
xmlsec --sign --output doc-signed-x509.xml --pkcs12 cert.pfx --pwd hello --trusted-pem cert.cer.pem doc.xml
```