Android Question Question about my APK file

Modern_Digital

Member
Licensed User
Longtime User
Hello,

Is it possible to extract my apk signature ,If yes is it easy to do that or just expert person can do it.

Thank you.
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
It is called asymmetric cryptography: https://en.wikipedia.org/wiki/Public-key_cryptography

Your key includes a pair of keys. The public key which is included in the APK and the private key. The APK also includes the signature (the files are in the META-INF folder).

You must have both the public and the private keys in order to create the signature. You can verify the signature with the public key.

It should be very difficult to find the private key.
 
Upvote 0
Top