tags:

views:

62

answers:

2

Is there any way to check the integrity of the application just before the application starts up? (to prevent anyone changing the application after it is installed)

A: 

I don't know if Adobe AIR itself provides any such integrity checker.

A (non-optimal) solution would be to have a database of md5 hashes of all or select important files, and verify it again at start-up. (you could use this for the md5 hashing.)

trex279
+1  A: 

Adobe AIR automatically does this when you sign your code and package your aar file. If you touch anything inside it aar file after signing it, you should get an error. See: http://help.adobe.com/en_US/AIR/1.5/air_security/WS5b3ccc516d4fbf351e63e3d11c0f598475-7ffa.html

Matt Beldyk

related questions