I need to digitally sign×tamp a PE file (EFI, actually) on Linux. I found 3 tools for signing PE files: pesign
, osslsigncode
and signcode
(mono), but it seems none quite fits my needs. The problem is, the key is on a hardware token and cannot be exported. Therefore I have to create a certificate database, add token driver entry there and work via this DB. Only pesign
allows this, but it does not support timestamping. osslsigncode
and signcode
support timestamping, but they cannot use the database.
The Windows signttool.exe
can perform signing and timestamping as separate steps. So I thought, I might use pesign
to sign the file and then only timestamp it with another tool. But as I discovered, osslsigncode
and signcode
do not support separate timestamping (in osslsigncode
project it's listed in the TODO
file, but no signs of it in repository yet).
Are there some tools I missed? Are there not-too-lowlevel libraries which would allow me to write such program myself? (Preferrably, C/C++/Perl/Python.) I tried to get the timestamping code from osslsigncode
, but failed to detach it easily from the prior steps (removing existing signature and adding a new one).
P.S. I also tried to run signtool.exe
under wine, but 1) failed to get it working, and 2) I'm not sure it's legally permitted (I'm not good at analyzing EULAs).