gitextract_wnigoa8g/ ├── .gitignore ├── CONDUCT.md ├── INSTALL.sh ├── LICENSE.txt ├── MANIFEST.in ├── PKG-INFO ├── PREREQUISITES.rst ├── README.rst ├── apple/ │ ├── README.rst │ ├── provisions.py │ └── provisions.sh ├── bin/ │ ├── isign │ ├── isign_export_creds.sh │ ├── isign_guess_mobileprovision.sh │ ├── make_seal │ ├── multisign │ └── pprint_codesig ├── dev/ │ ├── requirements.txt │ └── setup.sh ├── docs/ │ ├── applecerts.rst │ ├── codedirectory.rst │ ├── credentials.rst │ └── speed.rst ├── isign/ │ ├── __init__.py │ ├── apple_credentials/ │ │ └── README.rst │ ├── archive.py │ ├── bundle.py │ ├── code_resources.py │ ├── code_resources_template.xml │ ├── codesig.py │ ├── der_encoder.py │ ├── exceptions.py │ ├── isign.py │ ├── macho.py │ ├── macho_cs.py │ ├── makesig.py │ ├── multisign.py │ ├── signable.py │ ├── signer.py │ └── utils.py ├── jenkins.sh ├── run_tests.sh ├── setup.cfg ├── setup.py ├── tests/ │ ├── NotAnApp.ipa │ ├── NotAnApp.txt │ ├── NotAnAppDir/ │ │ └── README.md │ ├── README.md │ ├── Test.app/ │ │ ├── Assets.car │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboardc/ │ │ │ │ ├── 01J-lp-oVM-view-Ze5-6b-2t3.nib │ │ │ │ ├── Info.plist │ │ │ │ └── UIViewController-01J-lp-oVM.nib │ │ │ └── Main.storyboardc/ │ │ │ ├── 8rJ-Kc-sve-view-QS5-Rx-YEW.nib │ │ │ ├── 9pv-A4-QxB-view-tsR-hK-woN.nib │ │ │ ├── Info.plist │ │ │ └── UITabBarController-49e-Tb-3d3.nib │ │ ├── Info.plist │ │ ├── PkgInfo │ │ ├── _CodeSignature/ │ │ │ └── CodeResources │ │ ├── build.sh │ │ ├── isignTestApp │ │ ├── isignTestApp.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata/ │ │ │ │ └── neilk.xcuserdatad/ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata/ │ │ │ └── neilk.xcuserdatad/ │ │ │ └── xcschemes/ │ │ │ ├── isignTestApp.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── isignTestAppTests/ │ │ │ ├── Info.plist │ │ │ └── isignTestAppTests.swift │ │ └── isignTestAppUITests/ │ │ ├── Info.plist │ │ └── isignTestAppUITests.swift │ ├── Test.app.codesig.construct.txt │ ├── Test.ipa │ ├── TestWithFrameworks.ipa │ ├── Test_unsigned_fat.app/ │ │ ├── Assets.car │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboardc/ │ │ │ │ ├── 01J-lp-oVM-view-Ze5-6b-2t3.nib │ │ │ │ ├── Info.plist │ │ │ │ └── UIViewController-01J-lp-oVM.nib │ │ │ └── Main.storyboardc/ │ │ │ ├── 8rJ-Kc-sve-view-QS5-Rx-YEW.nib │ │ │ ├── 9pv-A4-QxB-view-tsR-hK-woN.nib │ │ │ ├── Info.plist │ │ │ └── UITabBarController-49e-Tb-3d3.nib │ │ ├── Info.plist │ │ ├── PkgInfo │ │ ├── build.sh │ │ ├── isignTestApp │ │ ├── isignTestApp.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata/ │ │ │ │ └── neilk.xcuserdatad/ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata/ │ │ │ └── neilk.xcuserdatad/ │ │ │ └── xcschemes/ │ │ │ ├── isignTestApp.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── isignTestAppTests/ │ │ │ ├── Info.plist │ │ │ └── isignTestAppTests.swift │ │ └── isignTestAppUITests/ │ │ ├── Info.plist │ │ └── isignTestAppUITests.swift │ ├── Test_unsigned_thin.app/ │ │ ├── Assets.car │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboardc/ │ │ │ │ ├── 01J-lp-oVM-view-Ze5-6b-2t3.nib │ │ │ │ ├── Info.plist │ │ │ │ └── UIViewController-01J-lp-oVM.nib │ │ │ └── Main.storyboardc/ │ │ │ ├── 8rJ-Kc-sve-view-QS5-Rx-YEW.nib │ │ │ ├── 9pv-A4-QxB-view-tsR-hK-woN.nib │ │ │ ├── Info.plist │ │ │ └── UITabBarController-49e-Tb-3d3.nib │ │ ├── Info.plist │ │ ├── PkgInfo │ │ ├── build.sh │ │ ├── isignTestApp │ │ ├── isignTestApp.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata/ │ │ │ │ └── neilk.xcuserdatad/ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata/ │ │ │ └── neilk.xcuserdatad/ │ │ │ └── xcschemes/ │ │ │ ├── isignTestApp.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── isignTestAppTests/ │ │ │ ├── Info.plist │ │ │ └── isignTestAppTests.swift │ │ └── isignTestAppUITests/ │ │ ├── Info.plist │ │ └── isignTestAppUITests.swift │ ├── bad_openssl │ ├── credentials/ │ │ ├── README.rst │ │ ├── makeFakePprof.sh │ │ ├── test.cert.pem │ │ ├── test.key.pem │ │ ├── test.mobileprovision │ │ └── test.mobileprovision.plist │ ├── credentials_std_names/ │ │ ├── README.rst │ │ ├── certificate.pem │ │ └── isign.mobileprovision │ ├── credentials_std_names_2/ │ │ ├── README.rst │ │ ├── certificate.pem │ │ ├── isign.mobileprovision │ │ └── key.pem │ ├── generate_codesig_construct_txt.py │ ├── isignTestApp/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sh │ │ ├── exportOptions.plist │ │ ├── isignTestApp/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── first.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── second.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── FirstViewController.swift │ │ │ ├── Info.plist │ │ │ └── SecondViewController.swift │ │ ├── isignTestApp.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata/ │ │ │ │ └── neilk.xcuserdatad/ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata/ │ │ │ └── neilk.xcuserdatad/ │ │ │ └── xcschemes/ │ │ │ ├── isignTestApp.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── isignTestAppTests/ │ │ │ ├── Info.plist │ │ │ └── isignTestAppTests.swift │ │ └── isignTestAppUITests/ │ │ ├── Info.plist │ │ └── isignTestAppUITests.swift │ ├── isignTestAppWithFrameworks/ │ │ ├── .gitignore │ │ ├── Podfile │ │ ├── README.md │ │ ├── build.sh │ │ ├── exportOptions.plist │ │ ├── isignTestApp/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── first.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── second.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj/ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── FirstViewController.swift │ │ │ ├── Info.plist │ │ │ └── SecondViewController.swift │ │ ├── isignTestApp.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata/ │ │ │ │ └── neilk.xcuserdatad/ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata/ │ │ │ └── neilk.xcuserdatad/ │ │ │ └── xcschemes/ │ │ │ ├── isignTestApp.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── isignTestApp.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata/ │ │ │ └── neilk.xcuserdatad/ │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── isignTestAppTests/ │ │ │ ├── Info.plist │ │ │ └── isignTestAppTests.swift │ │ └── isignTestAppUITests/ │ │ ├── Info.plist │ │ └── isignTestAppUITests.swift │ ├── isign_base_test.py │ ├── monitor_temp_file.py │ ├── sample-entitlements.plist │ ├── test_archive.py │ ├── test_creds_dir.py │ ├── test_entitlements.py │ ├── test_helpers.py │ ├── test_multisign.py │ ├── test_parsing.py │ ├── test_public_interface.py │ ├── test_sig.py │ ├── test_versioning.py │ └── test_versus_apple.py └── version.sh