Forked from acalism/how to verify or read mobile provisioning profile
Created
July 10, 2016 07:07
-
-
Save mcxiaoke/b3a9d9777a414b4117fcc59128c59de6 to your computer and use it in GitHub Desktop.
verify or read .mobileprovision file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Use openssl | |
openssl smime -in /path/to/your.mobileprovision -inform der -verify | |
2. Use security command | |
security cms -Di /path/to/your.mobileprovision |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Brilliant - Awesome !