2
我想驗證下載文件的簽名和證書使用pyopenssl,但文檔不清楚,谷歌沒有幫助。Pyopenssl驗證文件簽名
我在用戶的機器上有一個根CA證書,現在當用戶下載文件時,我會發送證書和簽名。首先,我需要的機器上根CA驗證證書,然後我需要的文件
驗證簽名OpenSSL中我可以使用下面的驗證CA證書
openssl verify -CAfile <root_pem> <cert_pem>
並按照驗證文件
openssl dgst <algo> -verify <cert_pub_key> -signature <signature> <file>
我在找等同方式使用Python做到這一點,最好pyopenssl