Does anyone know if there's a way to validate the signature of a Windows program under Unix? In a similar way like with signtool under Windows?
Thanks in advance! T.
Does anyone know if there's a way to validate the signature of a Windows program under Unix? In a similar way like with signtool under Windows?
Thanks in advance! T.
There are different signature algorithm possible, and Windows could have written their own in which case you might be out of luck.
You can use "md5" or "sum". You could validate the code in Windows and if validated, calculates it's "md5" signature and use that for Unix (and from that point, also use if for Windows if you want).
I would first investigate what kind of algorithm that windows tool uses, then you could see if the equivalent is available under Unix. If it is not MS proprietary code, a Unix equivalent likely already exists.