Name of the Certificate/Authority who signed IPA [iOS]
certificate, ios, ipa
Solution
I don't know if its the best way. By using `Terminal` you can browse the contents of signed ipa file. Change the extension to zip and extract it. Then try browsing to following path >Payload/AppName.app/embedded.mobileprovision.
You can copy the embedded.mobileprovision to some other location and open in text editor to see the details.
Problem
Other question show how you can sign an already signed IPA, like this, or this. Specially this part is what interests me: ``` /usr/bin/codesign -f -s "iPhone Distribution: Certificate Name" --resource-rules "Payload/Application.app/ResourceRules.plist" "Payload/Application.app" ``` Once I have the re-signed ipa, how can I see/know that in fact the IPA I currently have has been signed by "iPhone Distribution: Certificate Name"?