├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── ecm_app_integrity_check ├── .DS_Store ├── LICENSE ├── README.md ├── build │ ├── Debug-iphoneos │ │ └── ecm_app_integrity_check.dylib │ └── ecm_app_integrity_check.build │ │ └── Debug-iphoneos │ │ └── ecm_app_integrity_check.build │ │ ├── Objects-normal │ │ └── armv7 │ │ │ ├── app_integrity_check.d │ │ │ ├── app_integrity_check.dia │ │ │ ├── app_integrity_check.o │ │ │ ├── ecm_app_integrity_check.LinkFileList │ │ │ └── ecm_app_integrity_check_dependency_info.dat │ │ ├── build-state.dat │ │ ├── ecm_app_integrity_check-all-target-headers.hmap │ │ ├── ecm_app_integrity_check-generated-files.hmap │ │ ├── ecm_app_integrity_check-own-target-headers.hmap │ │ ├── ecm_app_integrity_check-project-headers.hmap │ │ ├── ecm_app_integrity_check.dep │ │ ├── ecm_app_integrity_check.hmap │ │ └── ecm_app_integrity_check.xcent ├── ecm_app_integrity_check.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── ecm_app_integrity_check.xccheckout │ │ └── xcuserdata │ │ │ └── gganley.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── gganley.xcuserdatad │ │ └── xcschemes │ │ ├── imas_app_check.xcscheme │ │ └── xcschememanagement.plist └── ecm_app_integrity_check │ ├── app_integrity_check.h │ ├── app_integrity_check.m │ └── ecm_app_integrity_check-Prefix.pch ├── ecm_demo_app ├── .DS_Store ├── APComplexPass_iPad.storyboard ├── APComplexPass_iPhone.storyboard ├── APQuestionPass_iPad.storyboard ├── APQuestionPass_iPhone.storyboard ├── APSimplePass_iPad.storyboard ├── APSimplePass_iPhone.storyboard ├── APViewController.h ├── APViewController.m ├── Images.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-40.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-50.png │ │ ├── Icon-Small-50@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon.png │ │ └── Icon@2x.png ├── LICENSE ├── Podfile ├── README.md ├── ecm_demo_app │ ├── APComplexPass_iPad.storyboard │ ├── APComplexPass_iPhone.storyboard │ ├── APQuestionPass_iPad.storyboard │ ├── APQuestionPass_iPhone.storyboard │ ├── APSimplePass_iPad.storyboard │ ├── APSimplePass_iPhone.storyboard │ ├── Base.lproj │ │ └── Main.storyboard │ ├── IMSAppDelegate.h │ ├── IMSAppDelegate.m │ ├── IMSViewController.h │ ├── IMSViewController.m │ ├── app_integrity │ │ ├── APViewController.h │ │ ├── APViewController.m │ │ ├── AppIntegrity.h │ │ ├── AppIntegrity.m │ │ ├── SecureData.h │ │ ├── SecureData.m │ │ ├── ecm_demo_app │ │ │ ├── APComplexPass_iPad.storyboard │ │ │ ├── APComplexPass_iPhone.storyboard │ │ │ ├── APQuestionPass_iPad.storyboard │ │ │ ├── APQuestionPass_iPhone.storyboard │ │ │ ├── APSimplePass_iPad.storyboard │ │ │ ├── APSimplePass_iPhone.storyboard │ │ │ ├── APViewController.h │ │ │ └── APViewController.m │ │ └── libs │ │ │ └── ecm_app_integrity_check.dylib │ ├── iMASMainViewController.m │ ├── support │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage │ │ │ │ └── Contents.json │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── imas_ecm_demo_app-Info.plist │ │ ├── imas_ecm_demo_app-Prefix.pch │ │ └── main.m │ └── tools │ │ ├── imas_ecm_dynamiclib_builder │ │ └── imas_ecm_dynamiclib_builder_fail ├── ecm_demo_appTests │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── iMAS_app_integrityTests.m │ └── imas_ecm_demo_appTests-Info.plist ├── imas_ecm_demo_app copy-Info.plist └── imas_ecm_demo_app.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── imas_ecm_demo_app.xccheckout │ └── xcuserdata │ │ └── gganley.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ └── gganley.xcuserdatad │ └── xcschemes │ ├── ECM Build.xcscheme │ ├── iMAS_app_integrity.xcscheme │ ├── iMAS_app_integrityTests.xcscheme │ └── xcschememanagement.plist ├── ecm_diagram.jpg ├── ecm_diagram_simple.jpg └── ecm_dynamiclib_builder ├── .DS_Store ├── LICENSE ├── README.md ├── imas_ecm_dynamiclib_builder.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── imas_ecm_dynamiclib_builder.xccheckout │ └── xcuserdata │ │ └── gganley.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── gganley.xcuserdatad │ └── xcschemes │ ├── imas_ecm_dynamiclib_builder.xcscheme │ └── xcschememanagement.plist ├── imas_ecm_dynamiclib_builder ├── SecureData.h ├── SecureData.m ├── imas_ecm_dynamiclib_builder.1 └── main.m └── imas_ecm_dynamiclib_builder_fail ├── imas_ecm_dynamiclib_builder_fail.1 └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/README.md -------------------------------------------------------------------------------- /ecm_app_integrity_check/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/.DS_Store -------------------------------------------------------------------------------- /ecm_app_integrity_check/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/LICENSE -------------------------------------------------------------------------------- /ecm_app_integrity_check/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/README.md -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/Debug-iphoneos/ecm_app_integrity_check.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/Debug-iphoneos/ecm_app_integrity_check.dylib -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/Objects-normal/armv7/app_integrity_check.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/Objects-normal/armv7/app_integrity_check.d -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/Objects-normal/armv7/app_integrity_check.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/Objects-normal/armv7/app_integrity_check.dia -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/Objects-normal/armv7/app_integrity_check.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/Objects-normal/armv7/app_integrity_check.o -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/Objects-normal/armv7/ecm_app_integrity_check.LinkFileList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/Objects-normal/armv7/ecm_app_integrity_check.LinkFileList -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/Objects-normal/armv7/ecm_app_integrity_check_dependency_info.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/Objects-normal/armv7/ecm_app_integrity_check_dependency_info.dat -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/build-state.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/build-state.dat -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check-all-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check-all-target-headers.hmap -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check-generated-files.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check-generated-files.hmap -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check-own-target-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check-own-target-headers.hmap -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check-project-headers.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check-project-headers.hmap -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check.dep -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check.hmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check.hmap -------------------------------------------------------------------------------- /ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check.xcent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/build/ecm_app_integrity_check.build/Debug-iphoneos/ecm_app_integrity_check.build/ecm_app_integrity_check.xcent -------------------------------------------------------------------------------- /ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/project.xcworkspace/xcshareddata/ecm_app_integrity_check.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/project.xcworkspace/xcshareddata/ecm_app_integrity_check.xccheckout -------------------------------------------------------------------------------- /ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/project.xcworkspace/xcuserdata/gganley.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/project.xcworkspace/xcuserdata/gganley.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/project.xcworkspace/xcuserdata/gganley.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/project.xcworkspace/xcuserdata/gganley.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/imas_app_check.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/imas_app_check.xcscheme -------------------------------------------------------------------------------- /ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/ecm_app_integrity_check.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ecm_app_integrity_check/ecm_app_integrity_check/app_integrity_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/ecm_app_integrity_check/app_integrity_check.h -------------------------------------------------------------------------------- /ecm_app_integrity_check/ecm_app_integrity_check/app_integrity_check.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/ecm_app_integrity_check/app_integrity_check.m -------------------------------------------------------------------------------- /ecm_app_integrity_check/ecm_app_integrity_check/ecm_app_integrity_check-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_app_integrity_check/ecm_app_integrity_check/ecm_app_integrity_check-Prefix.pch -------------------------------------------------------------------------------- /ecm_demo_app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/.DS_Store -------------------------------------------------------------------------------- /ecm_demo_app/APComplexPass_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/APComplexPass_iPad.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/APComplexPass_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/APComplexPass_iPhone.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/APQuestionPass_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/APQuestionPass_iPad.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/APQuestionPass_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/APQuestionPass_iPhone.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/APSimplePass_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/APSimplePass_iPad.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/APSimplePass_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/APSimplePass_iPhone.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/APViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/APViewController.h -------------------------------------------------------------------------------- /ecm_demo_app/APViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/APViewController.m -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-72.png -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-72@2x.png -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-Small-50.png -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Images.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /ecm_demo_app/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/LICENSE -------------------------------------------------------------------------------- /ecm_demo_app/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/Podfile -------------------------------------------------------------------------------- /ecm_demo_app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/README.md -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/APComplexPass_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/APComplexPass_iPad.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/APComplexPass_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/APComplexPass_iPhone.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/APQuestionPass_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/APQuestionPass_iPad.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/APQuestionPass_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/APQuestionPass_iPhone.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/APSimplePass_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/APSimplePass_iPad.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/APSimplePass_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/APSimplePass_iPhone.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/IMSAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/IMSAppDelegate.h -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/IMSAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/IMSAppDelegate.m -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/IMSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/IMSViewController.h -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/IMSViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/IMSViewController.m -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/APViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/APViewController.h -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/APViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/APViewController.m -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/AppIntegrity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/AppIntegrity.h -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/AppIntegrity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/AppIntegrity.m -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/SecureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/SecureData.h -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/SecureData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/SecureData.m -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APComplexPass_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APComplexPass_iPad.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APComplexPass_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APComplexPass_iPhone.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APQuestionPass_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APQuestionPass_iPad.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APQuestionPass_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APQuestionPass_iPhone.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APSimplePass_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APSimplePass_iPad.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APSimplePass_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APSimplePass_iPhone.storyboard -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APViewController.h -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/app_integrity/ecm_demo_app/APViewController.m -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/app_integrity/libs/ecm_app_integrity_check.dylib: -------------------------------------------------------------------------------- 1 | ../../../../ecm_app_integrity_check/build/Debug-iphoneos/ecm_app_integrity_check.dylib -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/iMASMainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/iMASMainViewController.m -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/support/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/support/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/support/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/support/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/support/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/support/imas_ecm_demo_app-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/support/imas_ecm_demo_app-Info.plist -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/support/imas_ecm_demo_app-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/support/imas_ecm_demo_app-Prefix.pch -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/support/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/support/main.m -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/tools/imas_ecm_dynamiclib_builder: -------------------------------------------------------------------------------- 1 | ../../../ecm_dynamiclib_builder/DerivedData/imas_ecm_dynamiclib_builder/Build/Products/Debug/imas_ecm_dynamiclib_builder -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_app/tools/imas_ecm_dynamiclib_builder_fail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_app/tools/imas_ecm_dynamiclib_builder_fail -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_appTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_appTests/iMAS_app_integrityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_appTests/iMAS_app_integrityTests.m -------------------------------------------------------------------------------- /ecm_demo_app/ecm_demo_appTests/imas_ecm_demo_appTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/ecm_demo_appTests/imas_ecm_demo_appTests-Info.plist -------------------------------------------------------------------------------- /ecm_demo_app/imas_ecm_demo_app copy-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/imas_ecm_demo_app copy-Info.plist -------------------------------------------------------------------------------- /ecm_demo_app/imas_ecm_demo_app.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/imas_ecm_demo_app.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ecm_demo_app/imas_ecm_demo_app.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/imas_ecm_demo_app.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ecm_demo_app/imas_ecm_demo_app.xcodeproj/project.xcworkspace/xcshareddata/imas_ecm_demo_app.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/imas_ecm_demo_app.xcodeproj/project.xcworkspace/xcshareddata/imas_ecm_demo_app.xccheckout -------------------------------------------------------------------------------- /ecm_demo_app/imas_ecm_demo_app.xcodeproj/project.xcworkspace/xcuserdata/gganley.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/imas_ecm_demo_app.xcodeproj/project.xcworkspace/xcuserdata/gganley.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ecm_demo_app/imas_ecm_demo_app.xcodeproj/project.xcworkspace/xcuserdata/gganley.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/imas_ecm_demo_app.xcodeproj/project.xcworkspace/xcuserdata/gganley.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ecm_demo_app/imas_ecm_demo_app.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/ECM Build.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/imas_ecm_demo_app.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/ECM Build.xcscheme -------------------------------------------------------------------------------- /ecm_demo_app/imas_ecm_demo_app.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/iMAS_app_integrity.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/imas_ecm_demo_app.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/iMAS_app_integrity.xcscheme -------------------------------------------------------------------------------- /ecm_demo_app/imas_ecm_demo_app.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/iMAS_app_integrityTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/imas_ecm_demo_app.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/iMAS_app_integrityTests.xcscheme -------------------------------------------------------------------------------- /ecm_demo_app/imas_ecm_demo_app.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_demo_app/imas_ecm_demo_app.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ecm_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_diagram.jpg -------------------------------------------------------------------------------- /ecm_diagram_simple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_diagram_simple.jpg -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/.DS_Store -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/LICENSE -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/README.md -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.xcodeproj/project.xcworkspace/xcshareddata/imas_ecm_dynamiclib_builder.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.xcodeproj/project.xcworkspace/xcshareddata/imas_ecm_dynamiclib_builder.xccheckout -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.xcodeproj/project.xcworkspace/xcuserdata/gganley.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.xcodeproj/project.xcworkspace/xcuserdata/gganley.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/imas_ecm_dynamiclib_builder.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/imas_ecm_dynamiclib_builder.xcscheme -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.xcodeproj/xcuserdata/gganley.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder/SecureData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder/SecureData.h -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder/SecureData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder/SecureData.m -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder.1 -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder/main.m -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder_fail/imas_ecm_dynamiclib_builder_fail.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder_fail/imas_ecm_dynamiclib_builder_fail.1 -------------------------------------------------------------------------------- /ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder_fail/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-imas/encrypted_code_modules/HEAD/ecm_dynamiclib_builder/imas_ecm_dynamiclib_builder_fail/main.m --------------------------------------------------------------------------------