标签: java cryptography certificate x509certificate
我将Java应用程序打包在ubuntu下的.deb中,我想对其进行签名。 在Windows下,我使用signtool.exe对 .exe命令: signtool.exe sign / f cert.p12 / p passwordcert app.exe。 在Linux下有类似的命令可以签名吗? 谢谢您的帮助。
signtool.exe sign / f cert.p12 / p passwordcert app.exe
答案 0 :(得分:1)
您可以使用openssl做到这一点。
转换.p12 to a .pem,然后用pkeyutl签名文件,例如:
openssl pkeyutl-登录文件-inkey key.pem-输出信号
There are other options。