Openssl

使用 openssl dgst 驗證文件簽名

  • March 5, 2010

我正在嘗試驗證文件的簽名:

openssl dgst -verify cert.pem -signature file.sha1 file.data
  • 它只說“無法載入密鑰文件

證書上寫著:

openssl verify cert.pem 

cert.pem: /C=....
error 20 at 0 depth lookup:unable to get local issuer certificate

但是,我特別不關心驗證證書,我只想驗證給定文件的簽名!

答案在這裡: https ://stackoverflow.com/questions/2385320/verifying-a-file-signature-with-openssl-dgst

引用自:https://serverfault.com/questions/118183