Skip to content

Instantly share code, notes, and snippets.

@wooster
Created November 29, 2011 22:15
Show Gist options
  • Save wooster/1406821 to your computer and use it in GitHub Desktop.
Save wooster/1406821 to your computer and use it in GitHub Desktop.
Decoding mobileprovision DER encoded ASN.1
from pyasn1.codec.der import decoder as der_decoder
s = open("Example.mobileprovision").read()
der_decoder.decode(s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment