I am building an app that will be distributed with an enterprise license. I am following these steps to build the application from xcode:
- Choose Generic iOS Device.
- Product -> Archive
- Window -> Organizer -> Export -> Save for Enterprise Deployment
However when I generate an IPA in this fashion I don't think the binary is encrypted using apples fairplay.
I unzipped the IPA then ran this on the binary:
otool -arch armv7 -l thebinary | grep crypt
Which produced:
cryptoff 15584
cryptsize 2364346
cryptid 0
From some other sources, I believe 'cryptid 0' show the binary is not encrypted.
- Is this the right way to check if the binary is encrypted?
- Is there a way to use FairPlay to encrypt iOS Enterprise Applications?