I was trying to crack an apk file and learn its coding philosophy. Here is a part of its source code, which is decompiled from the apk file:
For some reason I need the value of this encodeToString
. And I wonder is there a way to get the Byte[]
format of the signature from this apk file? Or the raw value is better.
I've try some tools like jarsigner from How do I verify that an Android apk is signed with a release certificate?, to print all the signs out. But I'm not sure if there is any different from the original methods.
Thanks.