Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请参考截图。
如果我得到了 APK 文件,如何验证 APK 上的签名证书是否与提到的 SHA256 指纹匹配?
apk 文件只是 zip 文件,您可以将它们解压缩。解压缩apk后,在文件夹中找到CERT.RSA文件META-INF并运行此命令
CERT.RSA
META-INF
keytool -printcert -file C:\Path\To\CERT.RSA
在其输出中,您可以找到 SHA256 指纹
是的,您可以直接从下面的 APK 文件中验证签名证书是 shell 命令:
$ keytool -printcert -jarfile file.apk