Getting certificate details from an apk

前端 未结 5 2050
名媛妹妹
名媛妹妹 2020-11-29 00:56

How do i go about getting the details of the certificate an apk was signed with. I have a bunch of apks signed with different certificate and I am trying to group them based

5条回答
  •  失恋的感觉
    2020-11-29 01:32

    unzip -p Name-of-apk.apk META-INF/CERT.RSA | keytool -printcert is what I used .

    It produces information such as the owner , issuer , serial number , valid through, certificate finger prints , signature algorithms and version .

提交回复
热议问题