Skip to content

Instantly share code, notes, and snippets.

@smirn0v
Last active December 27, 2015 11:39
Show Gist options
  • Save smirn0v/7319811 to your computer and use it in GitHub Desktop.
Save smirn0v/7319811 to your computer and use it in GitHub Desktop.
Extract certificate info from mobile provision profile
  1. Put 'DeveloperCertificates' base64 data from provision profile into separate file.
  2. Convert base64 to binary form.
cat cert.b64 | base64 -D > cert.bin
  1. Extract cert info
cat cert.bin | openssl x509 -subject -dates -inform der
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment