Created
December 5, 2012 20:11
-
-
Save ecentinela/4219061 to your computer and use it in GitHub Desktop.
Get Android application signature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PackageInfo info; | |
try { | |
info = getPackageManager().getPackageInfo("ecentinela.mercadotes", PackageManager.GET_SIGNATURES); | |
for (Signature signature : info.signatures) { | |
MessageDigest md; | |
md = MessageDigest.getInstance("SHA"); | |
md.update(signature.toByteArray()); | |
String something = new String(Base64.encode(md.digest(), 0)); | |
//String something = new String(Base64.encodeBytes(md.digest())); | |
Log.e("hash key", something); | |
} | |
} | |
catch (NameNotFoundException e1) { | |
Log.e("name not found", e1.toString()); | |
} | |
catch (NoSuchAlgorithmException e) { | |
Log.e("no such an algorithm", e.toString()); | |
} | |
catch (Exception e){ | |
Log.e("exception", e.toString()); | |
} |
this solution is deprecated!
this solution is very simple hacked!
how to use PackageInfo.GET_SIGNING_CERTIFICATES in API 28 !?
You can follow this example: https://stackoverflow.com/questions/52041805/how-to-use-packageinfo-get-signing-certificates-in-api-28
If it helps, please vote UP my post.
You can follow this example: https://stackoverflow.com/questions/52041805/how-to-use-packageinfo-get-signing-certificates-in-api-28
If it helps, please vote UP my post.
I added and update to that question.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is not really the signature, but the certificate that has signed the apk.