├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── technical_report.md └── workflows │ ├── autocloser.yml │ └── devskim-analysis.yml ├── .gitignore ├── CONTRIBUTING.md ├── Icons ├── Credits │ ├── Author.png │ ├── Author@2x.png │ ├── Author@3x.png │ ├── Designer.png │ ├── Designer@2x.png │ ├── Designer@3x.png │ ├── Developer_of_AltStore.png │ ├── Developer_of_AltStore@2x.png │ ├── Developer_of_AltStore@3x.png │ ├── Developer_of_Reborn.png │ ├── Developer_of_Reborn@2x.png │ └── Developer_of_Reborn@3x.png ├── Splash.png ├── Splash@2x.png ├── Splash@3x.png ├── iOS 9 Notification Icons │ ├── icon_29pt.png │ ├── icon_29pt@2x.png │ └── icon_29pt@3x.png ├── iOS App Icon │ ├── Color BG │ │ ├── icon_20pt.png │ │ ├── icon_20pt@2x.png │ │ ├── icon_20pt@3x.png │ │ ├── icon_29pt.png │ │ ├── icon_29pt@2x.png │ │ ├── icon_29pt@3x.png │ │ ├── icon_40pt.png │ │ ├── icon_40pt@2x.png │ │ ├── icon_40pt@3x.png │ │ ├── icon_60pt@2x.png │ │ ├── icon_60pt@3x.png │ │ ├── icon_76pt.png │ │ ├── icon_76pt@2x.png │ │ └── icon_83.5@2x.png │ ├── Large_noBG.png │ ├── Large_noBG@2x.png │ ├── Large_noBG@3x.png │ └── White BG │ │ ├── icon_20pt.png │ │ ├── icon_20pt@2x.png │ │ ├── icon_20pt@3x.png │ │ ├── icon_29pt.png │ │ ├── icon_29pt@2x.png │ │ ├── icon_29pt@3x.png │ │ ├── icon_40pt.png │ │ ├── icon_40pt@2x.png │ │ ├── icon_40pt@3x.png │ │ ├── icon_60pt@2x.png │ │ ├── icon_60pt@3x.png │ │ ├── icon_76pt.png │ │ ├── icon_76pt@2x.png │ │ └── icon_83.5@2x.png ├── iOS Close Box │ ├── Cancel.png │ ├── Cancel@2x.png │ └── Cancel@3x.png ├── iOS Sharing │ ├── doc_22.png │ ├── doc_320.png │ ├── doc_44.png │ └── doc_64.png ├── iOS Tab Bar │ ├── Installed Active.png │ ├── Installed Active@2x.png │ ├── Installed Active@3x.png │ ├── Installed.png │ ├── Installed@2x.png │ ├── Installed@3x.png │ ├── Settings Active.png │ ├── Settings Active@2x.png │ ├── Settings Active@3x.png │ ├── Settings.png │ ├── Settings@2x.png │ ├── Settings@3x.png │ ├── Troubleshooting Active.png │ ├── Troubleshooting Active@2x.png │ ├── Troubleshooting Active@3x.png │ ├── Troubleshooting.png │ ├── Troubleshooting@2x.png │ └── Troubleshooting@3x.png └── tvOS App Icon │ ├── Icon-Back.png │ ├── Icon-Back@2x.png │ ├── Icon-Front.png │ └── Icon-Front@2x.png ├── LICENSE ├── Legacy ├── Extender Installer.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Extender-Extensions │ ├── EEAdvancedController.h │ ├── EEAdvancedController.m │ ├── EEAppleServices.h │ ├── EEAppleServices.m │ ├── EEPackage.h │ ├── EEPackage.m │ ├── EEPackageDatabase.h │ ├── EEPackageDatabase.m │ ├── EEPackagesCell.h │ ├── EEPackagesCell.m │ ├── EEPackagesViewController.h │ ├── EEPackagesViewController.m │ ├── EEResources.h │ ├── EEResources.m │ ├── EESettingsController.h │ ├── EESettingsController.m │ ├── EETroubleshootController.h │ ├── EETroubleshootController.m │ ├── Extender-Extensions-Prefix.pch │ ├── ExtenderExtensions.mm │ ├── ExtenderExtensions.xm │ ├── Extender_Installer.mm │ ├── Extender_Installer.xm │ ├── NSData+GZIP.h │ ├── NSData+GZIP.m │ ├── Package │ │ ├── DEBIAN │ │ │ └── control │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ └── ExtenderExtensions.plist │ ├── PackageVersion.plist │ ├── SAMKeychain │ │ ├── SAMKeychain.h │ │ ├── SAMKeychain.m │ │ └── SAMKeychain │ │ │ ├── SAMKeychainQuery.h │ │ │ └── SAMKeychainQuery.m │ └── SSZipArchive │ │ ├── Info.plist │ │ ├── SSZipArchive+Swift.swift │ │ ├── SSZipArchive.h │ │ ├── SSZipArchive.m │ │ ├── SSZipCommon.h │ │ ├── ZipArchive.h │ │ ├── aes │ │ ├── aes.h │ │ ├── aes_via_ace.h │ │ ├── aescrypt.c │ │ ├── aeskey.c │ │ ├── aesopt.h │ │ ├── aestab.c │ │ ├── aestab.h │ │ ├── brg_endian.h │ │ ├── brg_types.h │ │ ├── entropy.c │ │ ├── entropy.h │ │ ├── fileenc.c │ │ ├── fileenc.h │ │ ├── hmac.c │ │ ├── hmac.h │ │ ├── prng.c │ │ ├── prng.h │ │ ├── pwd2key.c │ │ ├── pwd2key.h │ │ ├── sha1.c │ │ └── sha1.h │ │ └── minizip │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h ├── Extender-Installer │ ├── Extender-Installer-Prefix.pch │ ├── ExtenderExtensions.mm │ ├── ExtenderExtensions.xm │ ├── Extender_Extensions.mm │ ├── Extender_Installer.mm │ ├── Extender_Installer.xm │ ├── Package │ │ ├── DEBIAN │ │ │ ├── control │ │ │ ├── extrainst_ │ │ │ ├── postinst │ │ │ ├── postrm │ │ │ └── prerm │ │ └── Library │ │ │ └── MobileSubstrate │ │ │ └── DynamicLibraries │ │ │ ├── ExtenderExtensions.plist │ │ │ └── installdPatch.plist │ └── PackageVersion.plist ├── LatestBuild ├── Preferences.tbd ├── README.md ├── RPVAdvancedController.h ├── RPVAdvancedController.m ├── RPVSettingsController.h ├── RPVSettingsController.m ├── RPVTroubleshootController.h ├── RPVTroubleshootController.m ├── extrainst_ │ ├── Makefile │ ├── SAMKeychain │ │ ├── SAMKeychain.h │ │ ├── SAMKeychain.m │ │ ├── SAMKeychainQuery.h │ │ └── SAMKeychainQuery.m │ ├── SSZipArchive │ │ ├── Info.plist │ │ ├── SSZipArchive+Swift.swift │ │ ├── SSZipArchive.h │ │ ├── SSZipArchive.m │ │ ├── SSZipCommon.h │ │ ├── ZipArchive.h │ │ ├── aes │ │ │ ├── aes.h │ │ │ ├── aes_via_ace.h │ │ │ ├── aescrypt.c │ │ │ ├── aeskey.c │ │ │ ├── aesopt.h │ │ │ ├── aestab.c │ │ │ ├── aestab.h │ │ │ ├── brg_endian.h │ │ │ ├── brg_types.h │ │ │ ├── entropy.c │ │ │ ├── entropy.h │ │ │ ├── fileenc.c │ │ │ ├── fileenc.h │ │ │ ├── hmac.c │ │ │ ├── hmac.h │ │ │ ├── prng.c │ │ │ ├── prng.h │ │ │ ├── pwd2key.c │ │ │ ├── pwd2key.h │ │ │ ├── sha1.c │ │ │ └── sha1.h │ │ └── minizip │ │ │ ├── crypt.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── mztools.c │ │ │ ├── mztools.h │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zip.c │ │ │ └── zip.h │ ├── control │ ├── entitlements.plist │ ├── extrainst_.xcodeproj │ │ └── project.pbxproj │ └── main.mm ├── postinst │ ├── Makefile │ ├── control │ ├── main.mm │ └── postinst.xcodeproj │ │ └── project.pbxproj ├── postrm │ ├── Makefile │ ├── control │ ├── main.mm │ └── postrm.xcodeproj │ │ └── project.pbxproj └── prerm │ ├── Makefile │ ├── control │ ├── main.mm │ └── prerm.xcodeproj │ └── project.pbxproj ├── Podfile ├── Podfile.lock ├── Podfile.save ├── README.md ├── ReProvision.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── soh.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcshareddata │ └── xcschemes │ ├── iOS Share Extension.xcscheme │ └── iOS.xcscheme ├── ReProvision.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── Shared ├── Application Database │ ├── RPVApplication.h │ ├── RPVApplication.m │ ├── RPVApplicationDatabase.h │ ├── RPVApplicationDatabase.m │ ├── RPVApplicationSigning.h │ ├── RPVApplicationSigning.m │ ├── RPVBackgroundSigningManager.h │ ├── RPVBackgroundSigningManager.m │ ├── RPVErrors.h │ ├── RPVIpaBundleApplication.h │ └── RPVIpaBundleApplication.m ├── AuthKit.tbd ├── AuthKitUI.tbd ├── Classes │ ├── Resources │ │ ├── RPVAccountChecker.h │ │ └── RPVAccountChecker.m │ └── UI │ │ ├── RPVInstalledViewController.h │ │ ├── RPVInstalledViewController.m │ │ └── Troubleshooting Pane │ │ ├── RPVTroubleshootingCertificatesViewController.h │ │ ├── RPVTroubleshootingCertificatesViewController.m │ │ ├── RPVTroubleshootingController.h │ │ ├── RPVTroubleshootingController.m │ │ ├── RPVTroubleshootingNavigationViewController.h │ │ └── RPVTroubleshootingNavigationViewController.m ├── Daemon │ ├── Headers │ │ └── IOKit │ │ │ ├── IOKit.h │ │ │ ├── IOKitKeys.h │ │ │ ├── IOKitLib.h │ │ │ ├── IOMessage.h │ │ │ ├── IOReturn.h │ │ │ ├── IOTypes.h │ │ │ ├── OSKext.h │ │ │ ├── OSMessageNotification.h │ │ │ ├── hid │ │ │ ├── IOHIDDisplay.h │ │ │ ├── IOHIDEvent.h │ │ │ ├── IOHIDEventData.h │ │ │ ├── IOHIDEventQueue.h │ │ │ ├── IOHIDEventSystem.h │ │ │ ├── IOHIDEventSystemClient.h │ │ │ ├── IOHIDEventTypes.h │ │ │ ├── IOHIDNotification.h │ │ │ ├── IOHIDService.h │ │ │ ├── IOHIDSession.h │ │ │ └── IOHIDUserDevice.h │ │ │ ├── ps │ │ │ ├── IOPSKeys.h │ │ │ ├── IOPowerSources.h │ │ │ └── IOUPSPlugIn.h │ │ │ └── pwr_mgt │ │ │ ├── IOPM.h │ │ │ ├── IOPMKeys.h │ │ │ ├── IOPMLib.h │ │ │ ├── IOPMLibDefs.h │ │ │ └── IOPMLibPrivate.h │ ├── Prefix.pch │ ├── RPVApplicationProtocol.h │ ├── RPVDaemonListener.h │ ├── RPVDaemonListener.m │ ├── RPVDaemonProtocol.h │ ├── entitlements.plist │ ├── lib │ │ ├── AssertionServices.tbd │ │ ├── BackBoardServices.tbd │ │ └── SpringBoardServices.tbd │ ├── main.mm │ └── tvLib │ │ ├── AssertionServices.tbd │ │ ├── BackBoardServices.tbd │ │ └── SpringBoardServices.tbd ├── IOKit.tbd ├── entitlements.xml ├── include │ └── corecrypto │ │ ├── cc.h │ │ ├── cc_config.h │ │ ├── cc_debug.h │ │ ├── cc_memory.h │ │ ├── cc_priv.h │ │ ├── cc_runtime_config.h │ │ ├── ccaes.h │ │ ├── ccansikdf.h │ │ ├── ccasn1.h │ │ ├── ccblowfish.h │ │ ├── cccast.h │ │ ├── ccchacha20poly1305.h │ │ ├── ccchacha20poly1305_priv.h │ │ ├── cccmac.h │ │ ├── ccder.h │ │ ├── ccder_decode_eckey.h │ │ ├── ccder_encode_eckey.h │ │ ├── ccder_priv.h │ │ ├── ccder_rsa.h │ │ ├── ccdes.h │ │ ├── ccdh.h │ │ ├── ccdh_gp.h │ │ ├── ccdh_priv.h │ │ ├── ccdigest.h │ │ ├── ccdigest_priv.h │ │ ├── ccdrbg.h │ │ ├── ccdrbg_factory.h │ │ ├── ccdrbg_impl.h │ │ ├── ccec.h │ │ ├── ccec25519.h │ │ ├── ccec25519_priv.h │ │ ├── ccec_priv.h │ │ ├── ccecies.h │ │ ├── ccecies_priv.h │ │ ├── cchkdf.h │ │ ├── cchmac.h │ │ ├── ccmd2.h │ │ ├── ccmd4.h │ │ ├── ccmd5.h │ │ ├── ccmode.h │ │ ├── ccmode_factory.h │ │ ├── ccmode_impl.h │ │ ├── ccmode_siv.h │ │ ├── ccmode_siv_priv.h │ │ ├── ccn.h │ │ ├── ccn_priv.h │ │ ├── ccnistkdf.h │ │ ├── ccpad.h │ │ ├── ccpbkdf2.h │ │ ├── ccperf.h │ │ ├── ccprime.h │ │ ├── ccrc2.h │ │ ├── ccrc4.h │ │ ├── ccripemd.h │ │ ├── ccrng.h │ │ ├── ccrng_drbg.h │ │ ├── ccrng_ecfips_test.h │ │ ├── ccrng_pbkdf2_prng.h │ │ ├── ccrng_priv.h │ │ ├── ccrng_rsafips_test.h │ │ ├── ccrng_sequence.h │ │ ├── ccrng_system.h │ │ ├── ccrng_test.h │ │ ├── ccrsa.h │ │ ├── ccrsa_priv.h │ │ ├── ccsha1.h │ │ ├── ccsha2.h │ │ ├── ccsrp.h │ │ ├── ccsrp_gp.h │ │ ├── cctest.h │ │ ├── ccwrap.h │ │ ├── ccz.h │ │ ├── ccz_priv.h │ │ ├── cczp.h │ │ ├── cczp_priv.h │ │ └── fipspost.h └── libProvision │ ├── Apple Services │ ├── AuthKit.h │ ├── EEAppleServices.h │ ├── EEAppleServices.m │ ├── NSData+GZIP.h │ ├── NSData+GZIP.m │ ├── RPVAuthentication.h │ ├── RPVAuthentication.m │ ├── RPVLoginFallbackImpl.h │ ├── RPVLoginFallbackImpl.m │ ├── RPVLoginImpl.h │ └── RPVLoginImpl.m │ ├── Certificates │ ├── apple-ios-g3.pem │ ├── apple-ios.pem │ └── root.pem │ ├── CoreCrypt │ └── ccsrp.m │ ├── EEBackend.h │ ├── EEBackend.m │ ├── Provisioning │ ├── EEProvisioning.h │ └── EEProvisioning.mm │ ├── SAMKeychain │ ├── SAMKeychain.h │ ├── SAMKeychain.m │ └── SAMKeychain │ │ ├── SAMKeychainQuery.h │ │ └── SAMKeychainQuery.m │ ├── SSZipArchive │ ├── SSZipArchive.h │ ├── SSZipArchive.m │ ├── SSZipCommon.h │ ├── ZipArchive.h │ └── minizip │ │ ├── aes │ │ ├── aes.h │ │ ├── aes_ni.c │ │ ├── aes_ni.h │ │ ├── aescrypt.c │ │ ├── aeskey.c │ │ ├── aesopt.h │ │ ├── aestab.c │ │ ├── aestab.h │ │ ├── brg_endian.h │ │ ├── brg_types.h │ │ ├── fileenc.c │ │ ├── fileenc.h │ │ ├── hmac.c │ │ ├── hmac.h │ │ ├── prng.c │ │ ├── prng.h │ │ ├── pwd2key.c │ │ ├── pwd2key.h │ │ ├── sha1.c │ │ └── sha1.h │ │ ├── crypt.c │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── ioapi_buf.c │ │ ├── ioapi_buf.h │ │ ├── ioapi_mem.c │ │ ├── ioapi_mem.h │ │ ├── minishared.c │ │ ├── minishared.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── Signing │ ├── EESigning.h │ └── EESigning.mm │ ├── ldid │ ├── ldid.cpp │ ├── ldid.hpp │ ├── ldid.old.cpp │ ├── lookup2.c │ └── sha1.h │ └── libplist │ ├── Array.cpp │ ├── Array.h │ ├── Boolean.cpp │ ├── Boolean.h │ ├── Data.cpp │ ├── Data.h │ ├── Date.cpp │ ├── Date.h │ ├── Dictionary.cpp │ ├── Dictionary.h │ ├── Integer.cpp │ ├── Integer.h │ ├── Key.cpp │ ├── Key.h │ ├── Node.cpp │ ├── Node.h │ ├── Real.cpp │ ├── Real.h │ ├── String.cpp │ ├── String.h │ ├── Structure.cpp │ ├── Structure.h │ ├── Uid.cpp │ ├── Uid.h │ ├── base64.c │ ├── base64.h │ ├── bplist.c │ ├── bytearray.c │ ├── bytearray.h │ ├── hashtable.c │ ├── hashtable.h │ ├── libcnary │ ├── iterator.c │ ├── iterator.h │ ├── list.c │ ├── list.h │ ├── node.c │ ├── node.h │ ├── node_iterator.c │ ├── node_iterator.h │ ├── node_list.c │ ├── node_list.h │ └── object.h │ ├── plist++.h │ ├── plist.c │ ├── plist.h │ ├── plist2.h │ ├── ptrarray.c │ ├── ptrarray.h │ ├── strbuf.h │ ├── time64.c │ ├── time64.h │ ├── time64_limits.h │ └── xplist.c ├── bin ├── iosod └── ldid2 ├── iOS ├── Account │ ├── RPVAccount2FAViewController.h │ ├── RPVAccount2FAViewController.m │ ├── RPVAccountFinalController.h │ ├── RPVAccountFinalController.m │ ├── RPVAccountPrivacyPolicyViewController.h │ ├── RPVAccountPrivacyPolicyViewController.m │ ├── RPVAccountTeamIDViewController.h │ ├── RPVAccountTeamIDViewController.m │ ├── RPVAccountViewController.h │ └── RPVAccountViewController.m ├── AppDelegate.h ├── AppDelegate.m ├── Application Detail Pane │ ├── RPVApplicationDetailController.h │ ├── RPVApplicationDetailController.m │ ├── RPVCalendarCell.h │ ├── RPVCalendarCell.m │ ├── RPVCalendarController.h │ └── RPVCalendarController.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-83.5@2x.png │ │ ├── Icon-Notification.png │ │ ├── Icon-Notification@2x.png │ │ ├── Icon-Notification@3x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ └── icon.png │ ├── Contents.json │ ├── Developer_of_AltStore.imageset │ │ ├── Contents.json │ │ ├── Developer_of_AltStore.png │ │ ├── Developer_of_AltStore@2x.png │ │ └── Developer_of_AltStore@3x.png │ ├── Developer_of_Reborn.imageset │ │ ├── Contents.json │ │ ├── Developer_of_Reborn.png │ │ ├── Developer_of_Reborn@2x.png │ │ └── Developer_of_Reborn@3x.png │ ├── LaunchBackground.imageset │ │ ├── Contents.json │ │ ├── Splash.png │ │ ├── Splash@2x.png │ │ └── Splash@3x.png │ ├── LaunchIcon2.imageset │ │ ├── Contents.json │ │ ├── Large_noBG.png │ │ ├── Large_noBG@2x.png │ │ └── Large_noBG@3x.png │ ├── author.imageset │ │ ├── Author.png │ │ ├── Author@2x.png │ │ ├── Author@3x.png │ │ └── Contents.json │ ├── buttonClose.imageset │ │ ├── Cancel.png │ │ ├── Cancel@2x.png │ │ ├── Cancel@3x.png │ │ └── Contents.json │ ├── designer.imageset │ │ ├── Contents.json │ │ ├── Designer.png │ │ ├── Designer@2x.png │ │ └── Designer@3x.png │ ├── installed.imageset │ │ ├── Contents.json │ │ ├── Installed.png │ │ ├── Installed@2x.png │ │ └── Installed@3x.png │ ├── installedActive.imageset │ │ ├── Contents.json │ │ ├── Installed Active.png │ │ ├── Installed Active@2x.png │ │ └── Installed Active@3x.png │ ├── notifIcon.imageset │ │ ├── Contents.json │ │ ├── icon_29pt.png │ │ ├── icon_29pt@2x.png │ │ └── icon_29pt@3x.png │ ├── settings.imageset │ │ ├── Contents.json │ │ ├── Settings.png │ │ ├── Settings@2x.png │ │ └── Settings@3x.png │ ├── settingsActive.imageset │ │ ├── Contents.json │ │ ├── Settings Active.png │ │ ├── Settings Active@2x.png │ │ └── Settings Active@3x.png │ ├── troubleshooting.imageset │ │ ├── Contents.json │ │ ├── Troubleshooting.png │ │ ├── Troubleshooting@2x.png │ │ └── Troubleshooting@3x.png │ └── troubleshootingActive.imageset │ │ ├── Contents.json │ │ ├── Troubleshooting Active.png │ │ ├── Troubleshooting Active@2x.png │ │ └── Troubleshooting Active@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Fullscreen Alert │ ├── App ID │ │ ├── RPVAppID.h │ │ └── RPVAppID.m │ ├── RPVAppIDViewController.h │ ├── RPVAppIDViewController.m │ ├── RPVEntitlementsViewController.h │ ├── RPVEntitlementsViewController.m │ ├── RPVFullscreenAlertController.h │ ├── RPVFullscreenAlertController.m │ └── Table View │ │ ├── RPVAppIdsTableViewCell.h │ │ └── RPVAppIdsTableViewCell.m ├── HTML │ ├── RPVWebViewController.h │ ├── RPVWebViewController.m │ ├── openSourceLicenses.html │ └── privacy-policy.html ├── Headers │ ├── Preferences │ │ ├── PSBundleController.h │ │ ├── PSControlTableCell.h │ │ ├── PSDiscreteSlider.h │ │ ├── PSEditableTableCell.h │ │ ├── PSHeaderFooterView.h │ │ ├── PSListController.h │ │ ├── PSListItemsController.h │ │ ├── PSRootController.h │ │ ├── PSSliderTableCell.h │ │ ├── PSSpecifier.h │ │ ├── PSSwitchTableCell.h │ │ ├── PSSystemPolicyForApp.h │ │ ├── PSTableCell.h │ │ ├── PSViewController.h │ │ ├── Preferences.h │ │ └── PreferencesAppController.h │ └── libMobileGestalt.h ├── HookUtil │ ├── HookUtil.c │ └── HookUtil.h ├── Info.plist ├── Installed Pane │ ├── Collection View │ │ ├── RPVInstalledCollectionViewCell.h │ │ └── RPVInstalledCollectionViewCell.m │ ├── Others │ │ ├── RPVAppIdsLabel.h │ │ └── RPVAppIdsLabel.m │ ├── Section Headers │ │ ├── RPVInstalledMainHeaderView.h │ │ ├── RPVInstalledMainHeaderView.m │ │ ├── RPVInstalledSectionHeaderView.h │ │ └── RPVInstalledSectionHeaderView.m │ └── Table View │ │ ├── RPVInstalledTableViewCell.h │ │ └── RPVInstalledTableViewCell.m ├── Notifications │ ├── RMessageDesign.json │ ├── RPVNotificationManager.h │ └── RPVNotificationManager.m ├── Package │ ├── Applications │ │ └── .gitkeep │ ├── DEBIAN │ │ ├── control │ │ ├── postinst │ │ └── prerm │ ├── Library │ │ └── LaunchDaemons │ │ │ └── jp.soh.reprovisiond.plist │ └── usr │ │ └── libexec │ │ └── .gitkeep ├── PackageVersion.plist ├── Preferences.tbd ├── RPVResources.h ├── RPVResources.m ├── Root Controllers │ ├── RPVRootViewController.h │ ├── RPVRootViewController.m │ ├── iPad │ │ ├── RPVSplitViewDetailViewController.h │ │ ├── RPVSplitViewDetailViewController.m │ │ ├── RPVSplitViewMasterTableViewController.h │ │ └── RPVSplitViewMasterTableViewController.m │ └── iPhone │ │ ├── RPVTabBarController.h │ │ └── RPVTabBarController.m ├── Settings Panes │ ├── RPVAdvancedController.h │ ├── RPVAdvancedController.m │ ├── RPVSettingsController.h │ ├── RPVSettingsController.m │ ├── RPVSettingsNavigationViewController.h │ ├── RPVSettingsNavigationViewController.m │ ├── RPVTroubleshootController.h │ └── RPVTroubleshootController.m ├── Share Extension │ ├── Info.plist │ ├── ShareViewController.h │ └── ShareViewController.m ├── main.m └── thatsallfolks.jpg ├── macOS ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ └── MainMenu.xib ├── Info.plist ├── macOS.entitlements └── main.m └── tvOS ├── AppDelegate.h ├── AppDelegate.m ├── Application Detail Pane ├── RPVApplicationDetailController.h └── RPVApplicationDetailController.m ├── Assets.xcassets ├── App Icon & Top Shelf Image.brandassets │ ├── App Icon - App Store.imagestack │ │ ├── Back.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Front.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ └── Middle.imagestacklayer │ │ │ ├── Content.imageset │ │ │ └── Contents.json │ │ │ └── Contents.json │ ├── App Icon.imagestack │ │ ├── Back.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-Back.png │ │ │ │ └── Icon-Back@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Front.imagestacklayer │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-Front.png │ │ │ │ └── Icon-Front@2x.png │ │ │ └── Contents.json │ │ └── Middle.imagestacklayer │ │ │ ├── Content.imageset │ │ │ └── Contents.json │ │ │ └── Contents.json │ ├── Contents.json │ ├── Top Shelf Image Wide.imageset │ │ └── Contents.json │ └── Top Shelf Image.imageset │ │ └── Contents.json ├── Contents.json ├── Icon.imageset │ ├── Contents.json │ ├── Icon.png │ └── Icon@2x.png ├── Launch Image.launchimage │ └── Contents.json ├── author.imageset │ ├── Author.png │ ├── Author@2x.png │ ├── Author@3x.png │ └── Contents.json └── designer.imageset │ ├── Contents.json │ ├── Designer.png │ ├── Designer@2x.png │ └── Designer@3x.png ├── Base.lproj └── Main.storyboard ├── Headers ├── Preferences │ ├── PSBundleController.h │ ├── PSControlTableCell.h │ ├── PSEditableTableCell.h │ ├── PSListController.h │ ├── PSListItemsController.h │ ├── PSRootController.h │ ├── PSSliderTableCell.h │ ├── PSSpecifier.h │ ├── PSSwitchTableCell.h │ ├── PSTableCell.h │ ├── PSViewController.h │ └── Preferences.h └── libMobileGestalt.h ├── Info.plist ├── Installed Pane ├── Collection View │ ├── RPVInstalledCollectionViewCell.h │ └── RPVInstalledCollectionViewCell.m ├── RPVStickyScrollView.h ├── RPVStickyScrollView.m ├── Section Headers │ ├── RPVInstalledMainHeaderView.h │ ├── RPVInstalledMainHeaderView.m │ ├── RPVInstalledSectionHeaderViewController.h │ └── RPVInstalledSectionHeaderViewController.m └── Table View │ ├── RPVInstalledTableViewCell.h │ └── RPVInstalledTableViewCell.m ├── Notifications ├── RPVNotificationManager.h └── RPVNotificationManager.m ├── Package ├── Applications │ └── ReProvision.app │ │ ├── Assets.car │ │ ├── Base.lproj │ │ └── 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 │ │ │ └── fGQ-JB-Prd-view-WT8-De-ETN.nib │ │ ├── Info.plist │ │ ├── PackageVersion.plist │ │ ├── PkgInfo │ │ ├── ReProvision │ │ └── _CodeSignature │ │ └── CodeResources ├── DEBIAN │ ├── control │ ├── postinst │ └── prerm ├── Library │ └── LaunchDaemons │ │ └── jp.soh.reprovisiond.plist └── usr │ └── bin │ └── reprovisiond ├── PackageVersion.plist ├── Preferences.tbd ├── RPVResources.h ├── RPVResources.m ├── Settings Panes ├── RPVAdvancedController.h ├── RPVAdvancedController.m ├── RPVSettingsController.h ├── RPVSettingsController.m ├── RPVSettingsNavigationViewController.h └── RPVSettingsNavigationViewController.m ├── include └── openssl │ ├── aes.h │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1t.h │ ├── bio.h │ ├── blowfish.h │ ├── bn.h │ ├── buffer.h │ ├── camellia.h │ ├── cast.h │ ├── cmac.h │ ├── cms.h │ ├── comp.h │ ├── conf.h │ ├── conf_api.h │ ├── crypto.h │ ├── des.h │ ├── des_old.h │ ├── dh.h │ ├── dsa.h │ ├── dso.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ebcdic.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── hmac.h │ ├── idea.h │ ├── krb5_asn.h │ ├── kssl.h │ ├── lhash.h │ ├── md4.h │ ├── md5.h │ ├── mdc2.h │ ├── modes.h │ ├── obj_mac.h │ ├── objects.h │ ├── ocsp.h │ ├── opensslconf.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pem2.h │ ├── pkcs12.h │ ├── pkcs7.h │ ├── pqueue.h │ ├── rand.h │ ├── rc2.h │ ├── rc4.h │ ├── ripemd.h │ ├── rsa.h │ ├── safestack.h │ ├── seed.h │ ├── sha.h │ ├── srp.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl23.h │ ├── ssl3.h │ ├── stack.h │ ├── symhacks.h │ ├── tls1.h │ ├── ts.h │ ├── txt_db.h │ ├── ui.h │ ├── ui_compat.h │ ├── whrlpool.h │ ├── x509.h │ ├── x509_vfy.h │ └── x509v3.h ├── lib ├── libcrypto_tvOS.a └── libssl_tvOS.a └── main.m /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/technical_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/.github/ISSUE_TEMPLATE/technical_report.md -------------------------------------------------------------------------------- /.github/workflows/autocloser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/.github/workflows/autocloser.yml -------------------------------------------------------------------------------- /.github/workflows/devskim-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/.github/workflows/devskim-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Icons/Credits/Author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Credits/Author.png -------------------------------------------------------------------------------- /Icons/Credits/Author@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Credits/Author@2x.png -------------------------------------------------------------------------------- /Icons/Credits/Author@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Credits/Author@3x.png -------------------------------------------------------------------------------- /Icons/Credits/Designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Credits/Designer.png -------------------------------------------------------------------------------- /Icons/Credits/Designer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Credits/Designer@2x.png -------------------------------------------------------------------------------- /Icons/Credits/Designer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Credits/Designer@3x.png -------------------------------------------------------------------------------- /Icons/Credits/Developer_of_AltStore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Credits/Developer_of_AltStore.png -------------------------------------------------------------------------------- /Icons/Credits/Developer_of_AltStore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Credits/Developer_of_AltStore@2x.png -------------------------------------------------------------------------------- /Icons/Credits/Developer_of_AltStore@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Credits/Developer_of_AltStore@3x.png -------------------------------------------------------------------------------- /Icons/Credits/Developer_of_Reborn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Credits/Developer_of_Reborn.png -------------------------------------------------------------------------------- /Icons/Credits/Developer_of_Reborn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Credits/Developer_of_Reborn@2x.png -------------------------------------------------------------------------------- /Icons/Credits/Developer_of_Reborn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Credits/Developer_of_Reborn@3x.png -------------------------------------------------------------------------------- /Icons/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Splash.png -------------------------------------------------------------------------------- /Icons/Splash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Splash@2x.png -------------------------------------------------------------------------------- /Icons/Splash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/Splash@3x.png -------------------------------------------------------------------------------- /Icons/iOS 9 Notification Icons/icon_29pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS 9 Notification Icons/icon_29pt.png -------------------------------------------------------------------------------- /Icons/iOS 9 Notification Icons/icon_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS 9 Notification Icons/icon_29pt@2x.png -------------------------------------------------------------------------------- /Icons/iOS 9 Notification Icons/icon_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS 9 Notification Icons/icon_29pt@3x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_20pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_20pt.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_20pt@2x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_20pt@3x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_29pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_29pt.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_29pt@2x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_29pt@3x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_40pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_40pt.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_40pt@2x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_40pt@3x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_60pt@2x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_60pt@3x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_76pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_76pt.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_76pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_76pt@2x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Color BG/icon_83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Color BG/icon_83.5@2x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Large_noBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Large_noBG.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Large_noBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Large_noBG@2x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/Large_noBG@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/Large_noBG@3x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_20pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_20pt.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_20pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_20pt@2x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_20pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_20pt@3x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_29pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_29pt.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_29pt@2x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_29pt@3x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_40pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_40pt.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_40pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_40pt@2x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_40pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_40pt@3x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_60pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_60pt@2x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_60pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_60pt@3x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_76pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_76pt.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_76pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_76pt@2x.png -------------------------------------------------------------------------------- /Icons/iOS App Icon/White BG/icon_83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS App Icon/White BG/icon_83.5@2x.png -------------------------------------------------------------------------------- /Icons/iOS Close Box/Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Close Box/Cancel.png -------------------------------------------------------------------------------- /Icons/iOS Close Box/Cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Close Box/Cancel@2x.png -------------------------------------------------------------------------------- /Icons/iOS Close Box/Cancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Close Box/Cancel@3x.png -------------------------------------------------------------------------------- /Icons/iOS Sharing/doc_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Sharing/doc_22.png -------------------------------------------------------------------------------- /Icons/iOS Sharing/doc_320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Sharing/doc_320.png -------------------------------------------------------------------------------- /Icons/iOS Sharing/doc_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Sharing/doc_44.png -------------------------------------------------------------------------------- /Icons/iOS Sharing/doc_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Sharing/doc_64.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Installed Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Installed Active.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Installed Active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Installed Active@2x.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Installed Active@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Installed Active@3x.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Installed.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Installed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Installed@2x.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Installed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Installed@3x.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Settings Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Settings Active.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Settings Active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Settings Active@2x.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Settings Active@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Settings Active@3x.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Settings.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Settings@2x.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Settings@3x.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Troubleshooting Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Troubleshooting Active.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Troubleshooting Active@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Troubleshooting Active@2x.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Troubleshooting Active@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Troubleshooting Active@3x.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Troubleshooting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Troubleshooting.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Troubleshooting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Troubleshooting@2x.png -------------------------------------------------------------------------------- /Icons/iOS Tab Bar/Troubleshooting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/iOS Tab Bar/Troubleshooting@3x.png -------------------------------------------------------------------------------- /Icons/tvOS App Icon/Icon-Back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/tvOS App Icon/Icon-Back.png -------------------------------------------------------------------------------- /Icons/tvOS App Icon/Icon-Back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/tvOS App Icon/Icon-Back@2x.png -------------------------------------------------------------------------------- /Icons/tvOS App Icon/Icon-Front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/tvOS App Icon/Icon-Front.png -------------------------------------------------------------------------------- /Icons/tvOS App Icon/Icon-Front@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Icons/tvOS App Icon/Icon-Front@2x.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/LICENSE -------------------------------------------------------------------------------- /Legacy/Extender Installer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender Installer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEAdvancedController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEAdvancedController.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEAdvancedController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEAdvancedController.m -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEAppleServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEAppleServices.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEAppleServices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEAppleServices.m -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEPackage.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEPackage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEPackage.m -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEPackageDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEPackageDatabase.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEPackageDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEPackageDatabase.m -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEPackagesCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEPackagesCell.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEPackagesCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEPackagesCell.m -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEPackagesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEPackagesViewController.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEPackagesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEPackagesViewController.m -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEResources.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EEResources.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EEResources.m -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EESettingsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EESettingsController.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EESettingsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EESettingsController.m -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EETroubleshootController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EETroubleshootController.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/EETroubleshootController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/EETroubleshootController.m -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/Extender-Extensions-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/Extender-Extensions-Prefix.pch -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/ExtenderExtensions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/ExtenderExtensions.mm -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/ExtenderExtensions.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/ExtenderExtensions.xm -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/Extender_Installer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/Extender_Installer.mm -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/Extender_Installer.xm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/NSData+GZIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/NSData+GZIP.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/NSData+GZIP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/NSData+GZIP.m -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/Package/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/Package/DEBIAN/control -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/PackageVersion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/PackageVersion.plist -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SAMKeychain/SAMKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SAMKeychain/SAMKeychain.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SAMKeychain/SAMKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SAMKeychain/SAMKeychain.m -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/Info.plist -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/SSZipArchive+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/SSZipArchive+Swift.swift -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/SSZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/SSZipArchive.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/SSZipArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/SSZipArchive.m -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/SSZipCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/SSZipCommon.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/ZipArchive.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/aes.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/aes_via_ace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/aes_via_ace.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/aescrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/aescrypt.c -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/aeskey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/aeskey.c -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/aesopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/aesopt.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/aestab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/aestab.c -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/aestab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/aestab.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/brg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/brg_endian.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/brg_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/brg_types.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/entropy.c -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/entropy.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/fileenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/fileenc.c -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/fileenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/fileenc.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/hmac.c -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/hmac.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/prng.c -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/prng.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/pwd2key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/pwd2key.c -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/pwd2key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/pwd2key.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/sha1.c -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/aes/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/aes/sha1.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/minizip/crypt.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/minizip/ioapi.c -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/minizip/ioapi.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/minizip/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/minizip/mztools.c -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/minizip/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/minizip/mztools.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/minizip/unzip.c -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/minizip/unzip.h -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/minizip/zip.c -------------------------------------------------------------------------------- /Legacy/Extender-Extensions/SSZipArchive/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Extensions/SSZipArchive/minizip/zip.h -------------------------------------------------------------------------------- /Legacy/Extender-Installer/Extender-Installer-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Installer/Extender-Installer-Prefix.pch -------------------------------------------------------------------------------- /Legacy/Extender-Installer/ExtenderExtensions.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Installer/ExtenderExtensions.mm -------------------------------------------------------------------------------- /Legacy/Extender-Installer/ExtenderExtensions.xm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legacy/Extender-Installer/Extender_Extensions.mm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Legacy/Extender-Installer/Extender_Installer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Installer/Extender_Installer.mm -------------------------------------------------------------------------------- /Legacy/Extender-Installer/Extender_Installer.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Installer/Extender_Installer.xm -------------------------------------------------------------------------------- /Legacy/Extender-Installer/Package/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Installer/Package/DEBIAN/control -------------------------------------------------------------------------------- /Legacy/Extender-Installer/Package/DEBIAN/extrainst_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Installer/Package/DEBIAN/extrainst_ -------------------------------------------------------------------------------- /Legacy/Extender-Installer/Package/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Installer/Package/DEBIAN/postinst -------------------------------------------------------------------------------- /Legacy/Extender-Installer/Package/DEBIAN/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Installer/Package/DEBIAN/postrm -------------------------------------------------------------------------------- /Legacy/Extender-Installer/Package/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Installer/Package/DEBIAN/prerm -------------------------------------------------------------------------------- /Legacy/Extender-Installer/PackageVersion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Extender-Installer/PackageVersion.plist -------------------------------------------------------------------------------- /Legacy/LatestBuild: -------------------------------------------------------------------------------- 1 | /Users/matt/Library/Developer/Xcode/DerivedData/Extender_Installer-eydqhmxzvqghbocujccileavhrnx/Build/Products/Debug-iphoneos -------------------------------------------------------------------------------- /Legacy/Preferences.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/Preferences.tbd -------------------------------------------------------------------------------- /Legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/README.md -------------------------------------------------------------------------------- /Legacy/RPVAdvancedController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/RPVAdvancedController.h -------------------------------------------------------------------------------- /Legacy/RPVAdvancedController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/RPVAdvancedController.m -------------------------------------------------------------------------------- /Legacy/RPVSettingsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/RPVSettingsController.h -------------------------------------------------------------------------------- /Legacy/RPVSettingsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/RPVSettingsController.m -------------------------------------------------------------------------------- /Legacy/RPVTroubleshootController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/RPVTroubleshootController.h -------------------------------------------------------------------------------- /Legacy/RPVTroubleshootController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/RPVTroubleshootController.m -------------------------------------------------------------------------------- /Legacy/extrainst_/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/Makefile -------------------------------------------------------------------------------- /Legacy/extrainst_/SAMKeychain/SAMKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SAMKeychain/SAMKeychain.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SAMKeychain/SAMKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SAMKeychain/SAMKeychain.m -------------------------------------------------------------------------------- /Legacy/extrainst_/SAMKeychain/SAMKeychainQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SAMKeychain/SAMKeychainQuery.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SAMKeychain/SAMKeychainQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SAMKeychain/SAMKeychainQuery.m -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/Info.plist -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/SSZipArchive+Swift.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/SSZipArchive+Swift.swift -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/SSZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/SSZipArchive.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/SSZipArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/SSZipArchive.m -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/SSZipCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/SSZipCommon.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/ZipArchive.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/aes.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/aes_via_ace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/aes_via_ace.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/aescrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/aescrypt.c -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/aeskey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/aeskey.c -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/aesopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/aesopt.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/aestab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/aestab.c -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/aestab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/aestab.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/brg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/brg_endian.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/brg_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/brg_types.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/entropy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/entropy.c -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/entropy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/entropy.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/fileenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/fileenc.c -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/fileenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/fileenc.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/hmac.c -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/hmac.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/prng.c -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/prng.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/pwd2key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/pwd2key.c -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/pwd2key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/pwd2key.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/sha1.c -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/aes/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/aes/sha1.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/minizip/crypt.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/minizip/ioapi.c -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/minizip/ioapi.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/minizip/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/minizip/mztools.c -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/minizip/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/minizip/mztools.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/minizip/unzip.c -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/minizip/unzip.h -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/minizip/zip.c -------------------------------------------------------------------------------- /Legacy/extrainst_/SSZipArchive/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/SSZipArchive/minizip/zip.h -------------------------------------------------------------------------------- /Legacy/extrainst_/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/control -------------------------------------------------------------------------------- /Legacy/extrainst_/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/entitlements.plist -------------------------------------------------------------------------------- /Legacy/extrainst_/extrainst_.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/extrainst_.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Legacy/extrainst_/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/extrainst_/main.mm -------------------------------------------------------------------------------- /Legacy/postinst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/postinst/Makefile -------------------------------------------------------------------------------- /Legacy/postinst/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/postinst/control -------------------------------------------------------------------------------- /Legacy/postinst/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/postinst/main.mm -------------------------------------------------------------------------------- /Legacy/postinst/postinst.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/postinst/postinst.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Legacy/postrm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/postrm/Makefile -------------------------------------------------------------------------------- /Legacy/postrm/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/postrm/control -------------------------------------------------------------------------------- /Legacy/postrm/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/postrm/main.mm -------------------------------------------------------------------------------- /Legacy/postrm/postrm.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/postrm/postrm.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Legacy/prerm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/prerm/Makefile -------------------------------------------------------------------------------- /Legacy/prerm/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/prerm/control -------------------------------------------------------------------------------- /Legacy/prerm/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/prerm/main.mm -------------------------------------------------------------------------------- /Legacy/prerm/prerm.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Legacy/prerm/prerm.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Podfile.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Podfile.save -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/README.md -------------------------------------------------------------------------------- /ReProvision.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/ReProvision.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ReProvision.xcodeproj/xcshareddata/xcschemes/iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/ReProvision.xcodeproj/xcshareddata/xcschemes/iOS.xcscheme -------------------------------------------------------------------------------- /ReProvision.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/ReProvision.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ReProvision.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/ReProvision.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ReProvision.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/ReProvision.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Shared/Application Database/RPVApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Application Database/RPVApplication.h -------------------------------------------------------------------------------- /Shared/Application Database/RPVApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Application Database/RPVApplication.m -------------------------------------------------------------------------------- /Shared/Application Database/RPVApplicationDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Application Database/RPVApplicationDatabase.h -------------------------------------------------------------------------------- /Shared/Application Database/RPVApplicationDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Application Database/RPVApplicationDatabase.m -------------------------------------------------------------------------------- /Shared/Application Database/RPVApplicationSigning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Application Database/RPVApplicationSigning.h -------------------------------------------------------------------------------- /Shared/Application Database/RPVApplicationSigning.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Application Database/RPVApplicationSigning.m -------------------------------------------------------------------------------- /Shared/Application Database/RPVBackgroundSigningManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Application Database/RPVBackgroundSigningManager.h -------------------------------------------------------------------------------- /Shared/Application Database/RPVBackgroundSigningManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Application Database/RPVBackgroundSigningManager.m -------------------------------------------------------------------------------- /Shared/Application Database/RPVErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Application Database/RPVErrors.h -------------------------------------------------------------------------------- /Shared/Application Database/RPVIpaBundleApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Application Database/RPVIpaBundleApplication.h -------------------------------------------------------------------------------- /Shared/Application Database/RPVIpaBundleApplication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Application Database/RPVIpaBundleApplication.m -------------------------------------------------------------------------------- /Shared/AuthKit.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/AuthKit.tbd -------------------------------------------------------------------------------- /Shared/AuthKitUI.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/AuthKitUI.tbd -------------------------------------------------------------------------------- /Shared/Classes/Resources/RPVAccountChecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Classes/Resources/RPVAccountChecker.h -------------------------------------------------------------------------------- /Shared/Classes/Resources/RPVAccountChecker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Classes/Resources/RPVAccountChecker.m -------------------------------------------------------------------------------- /Shared/Classes/UI/RPVInstalledViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Classes/UI/RPVInstalledViewController.h -------------------------------------------------------------------------------- /Shared/Classes/UI/RPVInstalledViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Classes/UI/RPVInstalledViewController.m -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/IOKit.h: -------------------------------------------------------------------------------- 1 | IOKitLib.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/IOKitKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/IOKitKeys.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/IOKitLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/IOKitLib.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/IOMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/IOMessage.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/IOReturn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/IOReturn.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/IOTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/IOTypes.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/OSKext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/OSKext.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/OSMessageNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/OSMessageNotification.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/hid/IOHIDDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/hid/IOHIDDisplay.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/hid/IOHIDEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/hid/IOHIDEvent.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/hid/IOHIDEventData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/hid/IOHIDEventData.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/hid/IOHIDEventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/hid/IOHIDEventQueue.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/hid/IOHIDEventSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/hid/IOHIDEventSystem.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/hid/IOHIDEventSystemClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/hid/IOHIDEventSystemClient.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/hid/IOHIDEventTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/hid/IOHIDEventTypes.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/hid/IOHIDNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/hid/IOHIDNotification.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/hid/IOHIDService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/hid/IOHIDService.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/hid/IOHIDSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/hid/IOHIDSession.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/hid/IOHIDUserDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/hid/IOHIDUserDevice.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/ps/IOPSKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/ps/IOPSKeys.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/ps/IOPowerSources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/ps/IOPowerSources.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/ps/IOUPSPlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/ps/IOUPSPlugIn.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/pwr_mgt/IOPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/pwr_mgt/IOPM.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/pwr_mgt/IOPMKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/pwr_mgt/IOPMKeys.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/pwr_mgt/IOPMLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/pwr_mgt/IOPMLib.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/pwr_mgt/IOPMLibDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/pwr_mgt/IOPMLibDefs.h -------------------------------------------------------------------------------- /Shared/Daemon/Headers/IOKit/pwr_mgt/IOPMLibPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Headers/IOKit/pwr_mgt/IOPMLibPrivate.h -------------------------------------------------------------------------------- /Shared/Daemon/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/Prefix.pch -------------------------------------------------------------------------------- /Shared/Daemon/RPVApplicationProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/RPVApplicationProtocol.h -------------------------------------------------------------------------------- /Shared/Daemon/RPVDaemonListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/RPVDaemonListener.h -------------------------------------------------------------------------------- /Shared/Daemon/RPVDaemonListener.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/RPVDaemonListener.m -------------------------------------------------------------------------------- /Shared/Daemon/RPVDaemonProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/RPVDaemonProtocol.h -------------------------------------------------------------------------------- /Shared/Daemon/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/entitlements.plist -------------------------------------------------------------------------------- /Shared/Daemon/lib/AssertionServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/lib/AssertionServices.tbd -------------------------------------------------------------------------------- /Shared/Daemon/lib/BackBoardServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/lib/BackBoardServices.tbd -------------------------------------------------------------------------------- /Shared/Daemon/lib/SpringBoardServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/lib/SpringBoardServices.tbd -------------------------------------------------------------------------------- /Shared/Daemon/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/main.mm -------------------------------------------------------------------------------- /Shared/Daemon/tvLib/AssertionServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/tvLib/AssertionServices.tbd -------------------------------------------------------------------------------- /Shared/Daemon/tvLib/BackBoardServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/tvLib/BackBoardServices.tbd -------------------------------------------------------------------------------- /Shared/Daemon/tvLib/SpringBoardServices.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/Daemon/tvLib/SpringBoardServices.tbd -------------------------------------------------------------------------------- /Shared/IOKit.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/IOKit.tbd -------------------------------------------------------------------------------- /Shared/entitlements.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/entitlements.xml -------------------------------------------------------------------------------- /Shared/include/corecrypto/cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/cc.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/cc_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/cc_config.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/cc_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/cc_debug.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/cc_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/cc_memory.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/cc_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/cc_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/cc_runtime_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/cc_runtime_config.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccaes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccaes.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccansikdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccansikdf.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccasn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccasn1.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccblowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccblowfish.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/cccast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/cccast.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccchacha20poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccchacha20poly1305.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccchacha20poly1305_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccchacha20poly1305_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/cccmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/cccmac.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccder.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccder_decode_eckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccder_decode_eckey.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccder_encode_eckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccder_encode_eckey.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccder_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccder_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccder_rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccder_rsa.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccdes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccdes.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccdh.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccdh_gp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccdh_gp.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccdh_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccdh_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccdigest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccdigest.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccdigest_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccdigest_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccdrbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccdrbg.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccdrbg_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccdrbg_factory.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccdrbg_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccdrbg_impl.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccec.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccec25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccec25519.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccec25519_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccec25519_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccec_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccec_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccecies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccecies.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccecies_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccecies_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/cchkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/cchkdf.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/cchmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/cchmac.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccmd2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccmd2.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccmd4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccmd4.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccmd5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccmd5.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccmode.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccmode_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccmode_factory.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccmode_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccmode_impl.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccmode_siv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccmode_siv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccmode_siv_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccmode_siv_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccn.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccn_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccn_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccnistkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccnistkdf.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccpad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccpad.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccpbkdf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccpbkdf2.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccperf.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccprime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccprime.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccrc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccrc2.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccrc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccrc4.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccripemd.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccrng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccrng.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccrng_drbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccrng_drbg.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccrng_ecfips_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccrng_ecfips_test.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccrng_pbkdf2_prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccrng_pbkdf2_prng.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccrng_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccrng_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccrng_rsafips_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccrng_rsafips_test.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccrng_sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccrng_sequence.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccrng_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccrng_system.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccrng_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccrng_test.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccrsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccrsa.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccrsa_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccrsa_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccsha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccsha1.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccsha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccsha2.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccsrp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccsrp.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccsrp_gp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccsrp_gp.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/cctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/cctest.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccwrap.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccz.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/ccz_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/ccz_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/cczp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/cczp.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/cczp_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/cczp_priv.h -------------------------------------------------------------------------------- /Shared/include/corecrypto/fipspost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/include/corecrypto/fipspost.h -------------------------------------------------------------------------------- /Shared/libProvision/Apple Services/AuthKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Apple Services/AuthKit.h -------------------------------------------------------------------------------- /Shared/libProvision/Apple Services/EEAppleServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Apple Services/EEAppleServices.h -------------------------------------------------------------------------------- /Shared/libProvision/Apple Services/EEAppleServices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Apple Services/EEAppleServices.m -------------------------------------------------------------------------------- /Shared/libProvision/Apple Services/NSData+GZIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Apple Services/NSData+GZIP.h -------------------------------------------------------------------------------- /Shared/libProvision/Apple Services/NSData+GZIP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Apple Services/NSData+GZIP.m -------------------------------------------------------------------------------- /Shared/libProvision/Apple Services/RPVAuthentication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Apple Services/RPVAuthentication.h -------------------------------------------------------------------------------- /Shared/libProvision/Apple Services/RPVAuthentication.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Apple Services/RPVAuthentication.m -------------------------------------------------------------------------------- /Shared/libProvision/Apple Services/RPVLoginFallbackImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Apple Services/RPVLoginFallbackImpl.h -------------------------------------------------------------------------------- /Shared/libProvision/Apple Services/RPVLoginFallbackImpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Apple Services/RPVLoginFallbackImpl.m -------------------------------------------------------------------------------- /Shared/libProvision/Apple Services/RPVLoginImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Apple Services/RPVLoginImpl.h -------------------------------------------------------------------------------- /Shared/libProvision/Apple Services/RPVLoginImpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Apple Services/RPVLoginImpl.m -------------------------------------------------------------------------------- /Shared/libProvision/Certificates/apple-ios-g3.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Certificates/apple-ios-g3.pem -------------------------------------------------------------------------------- /Shared/libProvision/Certificates/apple-ios.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Certificates/apple-ios.pem -------------------------------------------------------------------------------- /Shared/libProvision/Certificates/root.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Certificates/root.pem -------------------------------------------------------------------------------- /Shared/libProvision/CoreCrypt/ccsrp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/CoreCrypt/ccsrp.m -------------------------------------------------------------------------------- /Shared/libProvision/EEBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/EEBackend.h -------------------------------------------------------------------------------- /Shared/libProvision/EEBackend.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/EEBackend.m -------------------------------------------------------------------------------- /Shared/libProvision/Provisioning/EEProvisioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Provisioning/EEProvisioning.h -------------------------------------------------------------------------------- /Shared/libProvision/Provisioning/EEProvisioning.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Provisioning/EEProvisioning.mm -------------------------------------------------------------------------------- /Shared/libProvision/SAMKeychain/SAMKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SAMKeychain/SAMKeychain.h -------------------------------------------------------------------------------- /Shared/libProvision/SAMKeychain/SAMKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SAMKeychain/SAMKeychain.m -------------------------------------------------------------------------------- /Shared/libProvision/SAMKeychain/SAMKeychain/SAMKeychainQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SAMKeychain/SAMKeychain/SAMKeychainQuery.h -------------------------------------------------------------------------------- /Shared/libProvision/SAMKeychain/SAMKeychain/SAMKeychainQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SAMKeychain/SAMKeychain/SAMKeychainQuery.m -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/SSZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/SSZipArchive.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/SSZipArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/SSZipArchive.m -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/SSZipCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/SSZipCommon.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/ZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/ZipArchive.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/aes.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/aes_ni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/aes_ni.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/aes_ni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/aes_ni.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/aescrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/aescrypt.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/aeskey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/aeskey.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/aesopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/aesopt.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/aestab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/aestab.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/aestab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/aestab.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/brg_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/brg_endian.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/brg_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/brg_types.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/fileenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/fileenc.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/fileenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/fileenc.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/hmac.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/hmac.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/prng.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/prng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/prng.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/pwd2key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/pwd2key.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/pwd2key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/pwd2key.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/sha1.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/aes/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/aes/sha1.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/crypt.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/crypt.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/ioapi.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/ioapi.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/ioapi_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/ioapi_buf.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/ioapi_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/ioapi_buf.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/ioapi_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/ioapi_mem.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/ioapi_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/ioapi_mem.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/minishared.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/minishared.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/minishared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/minishared.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/unzip.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/unzip.h -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/zip.c -------------------------------------------------------------------------------- /Shared/libProvision/SSZipArchive/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/SSZipArchive/minizip/zip.h -------------------------------------------------------------------------------- /Shared/libProvision/Signing/EESigning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Signing/EESigning.h -------------------------------------------------------------------------------- /Shared/libProvision/Signing/EESigning.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/Signing/EESigning.mm -------------------------------------------------------------------------------- /Shared/libProvision/ldid/ldid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/ldid/ldid.cpp -------------------------------------------------------------------------------- /Shared/libProvision/ldid/ldid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/ldid/ldid.hpp -------------------------------------------------------------------------------- /Shared/libProvision/ldid/ldid.old.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/ldid/ldid.old.cpp -------------------------------------------------------------------------------- /Shared/libProvision/ldid/lookup2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/ldid/lookup2.c -------------------------------------------------------------------------------- /Shared/libProvision/ldid/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/ldid/sha1.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Array.cpp -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Array.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Boolean.cpp -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Boolean.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Data.cpp -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Data.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Date.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Date.cpp -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Date.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Dictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Dictionary.cpp -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Dictionary.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Integer.cpp -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Integer.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Key.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Key.cpp -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Key.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Node.cpp -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Node.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Real.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Real.cpp -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Real.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Real.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/String.cpp -------------------------------------------------------------------------------- /Shared/libProvision/libplist/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/String.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Structure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Structure.cpp -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Structure.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Uid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Uid.cpp -------------------------------------------------------------------------------- /Shared/libProvision/libplist/Uid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/Uid.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/base64.c -------------------------------------------------------------------------------- /Shared/libProvision/libplist/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/base64.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/bplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/bplist.c -------------------------------------------------------------------------------- /Shared/libProvision/libplist/bytearray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/bytearray.c -------------------------------------------------------------------------------- /Shared/libProvision/libplist/bytearray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/bytearray.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/hashtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/hashtable.c -------------------------------------------------------------------------------- /Shared/libProvision/libplist/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/hashtable.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/libcnary/iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/libcnary/iterator.c -------------------------------------------------------------------------------- /Shared/libProvision/libplist/libcnary/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/libcnary/iterator.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/libcnary/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/libcnary/list.c -------------------------------------------------------------------------------- /Shared/libProvision/libplist/libcnary/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/libcnary/list.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/libcnary/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/libcnary/node.c -------------------------------------------------------------------------------- /Shared/libProvision/libplist/libcnary/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/libcnary/node.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/libcnary/node_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/libcnary/node_iterator.c -------------------------------------------------------------------------------- /Shared/libProvision/libplist/libcnary/node_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/libcnary/node_iterator.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/libcnary/node_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/libcnary/node_list.c -------------------------------------------------------------------------------- /Shared/libProvision/libplist/libcnary/node_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/libcnary/node_list.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/libcnary/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/libcnary/object.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/plist++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/plist++.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/plist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/plist.c -------------------------------------------------------------------------------- /Shared/libProvision/libplist/plist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/plist.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/plist2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/plist2.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/ptrarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/ptrarray.c -------------------------------------------------------------------------------- /Shared/libProvision/libplist/ptrarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/ptrarray.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/strbuf.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/time64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/time64.c -------------------------------------------------------------------------------- /Shared/libProvision/libplist/time64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/time64.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/time64_limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/time64_limits.h -------------------------------------------------------------------------------- /Shared/libProvision/libplist/xplist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/Shared/libProvision/libplist/xplist.c -------------------------------------------------------------------------------- /bin/iosod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/bin/iosod -------------------------------------------------------------------------------- /bin/ldid2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/bin/ldid2 -------------------------------------------------------------------------------- /iOS/Account/RPVAccount2FAViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Account/RPVAccount2FAViewController.h -------------------------------------------------------------------------------- /iOS/Account/RPVAccount2FAViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Account/RPVAccount2FAViewController.m -------------------------------------------------------------------------------- /iOS/Account/RPVAccountFinalController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Account/RPVAccountFinalController.h -------------------------------------------------------------------------------- /iOS/Account/RPVAccountFinalController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Account/RPVAccountFinalController.m -------------------------------------------------------------------------------- /iOS/Account/RPVAccountPrivacyPolicyViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Account/RPVAccountPrivacyPolicyViewController.h -------------------------------------------------------------------------------- /iOS/Account/RPVAccountPrivacyPolicyViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Account/RPVAccountPrivacyPolicyViewController.m -------------------------------------------------------------------------------- /iOS/Account/RPVAccountTeamIDViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Account/RPVAccountTeamIDViewController.h -------------------------------------------------------------------------------- /iOS/Account/RPVAccountTeamIDViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Account/RPVAccountTeamIDViewController.m -------------------------------------------------------------------------------- /iOS/Account/RPVAccountViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Account/RPVAccountViewController.h -------------------------------------------------------------------------------- /iOS/Account/RPVAccountViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Account/RPVAccountViewController.m -------------------------------------------------------------------------------- /iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/AppDelegate.h -------------------------------------------------------------------------------- /iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/AppDelegate.m -------------------------------------------------------------------------------- /iOS/Application Detail Pane/RPVApplicationDetailController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Application Detail Pane/RPVApplicationDetailController.h -------------------------------------------------------------------------------- /iOS/Application Detail Pane/RPVApplicationDetailController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Application Detail Pane/RPVApplicationDetailController.m -------------------------------------------------------------------------------- /iOS/Application Detail Pane/RPVCalendarCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Application Detail Pane/RPVCalendarCell.h -------------------------------------------------------------------------------- /iOS/Application Detail Pane/RPVCalendarCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Application Detail Pane/RPVCalendarCell.m -------------------------------------------------------------------------------- /iOS/Application Detail Pane/RPVCalendarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Application Detail Pane/RPVCalendarController.h -------------------------------------------------------------------------------- /iOS/Application Detail Pane/RPVCalendarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Application Detail Pane/RPVCalendarController.m -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-Notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-Notification.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-Notification@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-Notification@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-Notification@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-Notification@3x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small-40.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/AppIcon.appiconset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/AppIcon.appiconset/icon.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/Developer_of_AltStore.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/Developer_of_AltStore.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/Developer_of_Reborn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/Developer_of_Reborn.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/LaunchBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/LaunchBackground.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/LaunchBackground.imageset/Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/LaunchBackground.imageset/Splash.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/LaunchBackground.imageset/Splash@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/LaunchBackground.imageset/Splash@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/LaunchBackground.imageset/Splash@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/LaunchBackground.imageset/Splash@3x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/LaunchIcon2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/LaunchIcon2.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/LaunchIcon2.imageset/Large_noBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/LaunchIcon2.imageset/Large_noBG.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/LaunchIcon2.imageset/Large_noBG@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/LaunchIcon2.imageset/Large_noBG@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/LaunchIcon2.imageset/Large_noBG@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/LaunchIcon2.imageset/Large_noBG@3x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/author.imageset/Author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/author.imageset/Author.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/author.imageset/Author@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/author.imageset/Author@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/author.imageset/Author@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/author.imageset/Author@3x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/author.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/author.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/buttonClose.imageset/Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/buttonClose.imageset/Cancel.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/buttonClose.imageset/Cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/buttonClose.imageset/Cancel@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/buttonClose.imageset/Cancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/buttonClose.imageset/Cancel@3x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/buttonClose.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/buttonClose.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/designer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/designer.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/designer.imageset/Designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/designer.imageset/Designer.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/designer.imageset/Designer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/designer.imageset/Designer@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/designer.imageset/Designer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/designer.imageset/Designer@3x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/installed.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/installed.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/installed.imageset/Installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/installed.imageset/Installed.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/installed.imageset/Installed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/installed.imageset/Installed@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/installed.imageset/Installed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/installed.imageset/Installed@3x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/installedActive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/installedActive.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/installedActive.imageset/Installed Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/installedActive.imageset/Installed Active.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/notifIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/notifIcon.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/notifIcon.imageset/icon_29pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/notifIcon.imageset/icon_29pt.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/notifIcon.imageset/icon_29pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/notifIcon.imageset/icon_29pt@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/notifIcon.imageset/icon_29pt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/notifIcon.imageset/icon_29pt@3x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/settings.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/settings.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/settings.imageset/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/settings.imageset/Settings.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/settings.imageset/Settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/settings.imageset/Settings@2x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/settings.imageset/Settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/settings.imageset/Settings@3x.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/settingsActive.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/settingsActive.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Assets.xcassets/settingsActive.imageset/Settings Active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/settingsActive.imageset/Settings Active.png -------------------------------------------------------------------------------- /iOS/Assets.xcassets/troubleshooting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Assets.xcassets/troubleshooting.imageset/Contents.json -------------------------------------------------------------------------------- /iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /iOS/Fullscreen Alert/App ID/RPVAppID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Fullscreen Alert/App ID/RPVAppID.h -------------------------------------------------------------------------------- /iOS/Fullscreen Alert/App ID/RPVAppID.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Fullscreen Alert/App ID/RPVAppID.m -------------------------------------------------------------------------------- /iOS/Fullscreen Alert/RPVAppIDViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Fullscreen Alert/RPVAppIDViewController.h -------------------------------------------------------------------------------- /iOS/Fullscreen Alert/RPVAppIDViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Fullscreen Alert/RPVAppIDViewController.m -------------------------------------------------------------------------------- /iOS/Fullscreen Alert/RPVEntitlementsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Fullscreen Alert/RPVEntitlementsViewController.h -------------------------------------------------------------------------------- /iOS/Fullscreen Alert/RPVEntitlementsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Fullscreen Alert/RPVEntitlementsViewController.m -------------------------------------------------------------------------------- /iOS/Fullscreen Alert/RPVFullscreenAlertController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Fullscreen Alert/RPVFullscreenAlertController.h -------------------------------------------------------------------------------- /iOS/Fullscreen Alert/RPVFullscreenAlertController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Fullscreen Alert/RPVFullscreenAlertController.m -------------------------------------------------------------------------------- /iOS/Fullscreen Alert/Table View/RPVAppIdsTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Fullscreen Alert/Table View/RPVAppIdsTableViewCell.h -------------------------------------------------------------------------------- /iOS/Fullscreen Alert/Table View/RPVAppIdsTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Fullscreen Alert/Table View/RPVAppIdsTableViewCell.m -------------------------------------------------------------------------------- /iOS/HTML/RPVWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/HTML/RPVWebViewController.h -------------------------------------------------------------------------------- /iOS/HTML/RPVWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/HTML/RPVWebViewController.m -------------------------------------------------------------------------------- /iOS/HTML/openSourceLicenses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/HTML/openSourceLicenses.html -------------------------------------------------------------------------------- /iOS/HTML/privacy-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/HTML/privacy-policy.html -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSBundleController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSBundleController.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSControlTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSControlTableCell.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSDiscreteSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSDiscreteSlider.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSEditableTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSEditableTableCell.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSHeaderFooterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSHeaderFooterView.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSListController.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSListItemsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSListItemsController.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSRootController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSRootController.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSSliderTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSSliderTableCell.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSSpecifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSSpecifier.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSSwitchTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSSwitchTableCell.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSSystemPolicyForApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSSystemPolicyForApp.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSTableCell.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PSViewController.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/Preferences.h -------------------------------------------------------------------------------- /iOS/Headers/Preferences/PreferencesAppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/Preferences/PreferencesAppController.h -------------------------------------------------------------------------------- /iOS/Headers/libMobileGestalt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Headers/libMobileGestalt.h -------------------------------------------------------------------------------- /iOS/HookUtil/HookUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/HookUtil/HookUtil.c -------------------------------------------------------------------------------- /iOS/HookUtil/HookUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/HookUtil/HookUtil.h -------------------------------------------------------------------------------- /iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Info.plist -------------------------------------------------------------------------------- /iOS/Installed Pane/Others/RPVAppIdsLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Installed Pane/Others/RPVAppIdsLabel.h -------------------------------------------------------------------------------- /iOS/Installed Pane/Others/RPVAppIdsLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Installed Pane/Others/RPVAppIdsLabel.m -------------------------------------------------------------------------------- /iOS/Installed Pane/Table View/RPVInstalledTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Installed Pane/Table View/RPVInstalledTableViewCell.h -------------------------------------------------------------------------------- /iOS/Installed Pane/Table View/RPVInstalledTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Installed Pane/Table View/RPVInstalledTableViewCell.m -------------------------------------------------------------------------------- /iOS/Notifications/RMessageDesign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Notifications/RMessageDesign.json -------------------------------------------------------------------------------- /iOS/Notifications/RPVNotificationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Notifications/RPVNotificationManager.h -------------------------------------------------------------------------------- /iOS/Notifications/RPVNotificationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Notifications/RPVNotificationManager.m -------------------------------------------------------------------------------- /iOS/Package/Applications/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/Package/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Package/DEBIAN/control -------------------------------------------------------------------------------- /iOS/Package/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Package/DEBIAN/postinst -------------------------------------------------------------------------------- /iOS/Package/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Package/DEBIAN/prerm -------------------------------------------------------------------------------- /iOS/Package/Library/LaunchDaemons/jp.soh.reprovisiond.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Package/Library/LaunchDaemons/jp.soh.reprovisiond.plist -------------------------------------------------------------------------------- /iOS/Package/usr/libexec/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iOS/PackageVersion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/PackageVersion.plist -------------------------------------------------------------------------------- /iOS/Preferences.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Preferences.tbd -------------------------------------------------------------------------------- /iOS/RPVResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/RPVResources.h -------------------------------------------------------------------------------- /iOS/RPVResources.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/RPVResources.m -------------------------------------------------------------------------------- /iOS/Root Controllers/RPVRootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Root Controllers/RPVRootViewController.h -------------------------------------------------------------------------------- /iOS/Root Controllers/RPVRootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Root Controllers/RPVRootViewController.m -------------------------------------------------------------------------------- /iOS/Root Controllers/iPad/RPVSplitViewDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Root Controllers/iPad/RPVSplitViewDetailViewController.h -------------------------------------------------------------------------------- /iOS/Root Controllers/iPad/RPVSplitViewDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Root Controllers/iPad/RPVSplitViewDetailViewController.m -------------------------------------------------------------------------------- /iOS/Root Controllers/iPhone/RPVTabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Root Controllers/iPhone/RPVTabBarController.h -------------------------------------------------------------------------------- /iOS/Root Controllers/iPhone/RPVTabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Root Controllers/iPhone/RPVTabBarController.m -------------------------------------------------------------------------------- /iOS/Settings Panes/RPVAdvancedController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Settings Panes/RPVAdvancedController.h -------------------------------------------------------------------------------- /iOS/Settings Panes/RPVAdvancedController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Settings Panes/RPVAdvancedController.m -------------------------------------------------------------------------------- /iOS/Settings Panes/RPVSettingsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Settings Panes/RPVSettingsController.h -------------------------------------------------------------------------------- /iOS/Settings Panes/RPVSettingsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Settings Panes/RPVSettingsController.m -------------------------------------------------------------------------------- /iOS/Settings Panes/RPVSettingsNavigationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Settings Panes/RPVSettingsNavigationViewController.h -------------------------------------------------------------------------------- /iOS/Settings Panes/RPVSettingsNavigationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Settings Panes/RPVSettingsNavigationViewController.m -------------------------------------------------------------------------------- /iOS/Settings Panes/RPVTroubleshootController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Settings Panes/RPVTroubleshootController.h -------------------------------------------------------------------------------- /iOS/Settings Panes/RPVTroubleshootController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Settings Panes/RPVTroubleshootController.m -------------------------------------------------------------------------------- /iOS/Share Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Share Extension/Info.plist -------------------------------------------------------------------------------- /iOS/Share Extension/ShareViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Share Extension/ShareViewController.h -------------------------------------------------------------------------------- /iOS/Share Extension/ShareViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/Share Extension/ShareViewController.m -------------------------------------------------------------------------------- /iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/main.m -------------------------------------------------------------------------------- /iOS/thatsallfolks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/iOS/thatsallfolks.jpg -------------------------------------------------------------------------------- /macOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/macOS/AppDelegate.h -------------------------------------------------------------------------------- /macOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/macOS/AppDelegate.m -------------------------------------------------------------------------------- /macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macOS/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/macOS/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/macOS/Info.plist -------------------------------------------------------------------------------- /macOS/macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/macOS/macOS.entitlements -------------------------------------------------------------------------------- /macOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/macOS/main.m -------------------------------------------------------------------------------- /tvOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/AppDelegate.h -------------------------------------------------------------------------------- /tvOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/AppDelegate.m -------------------------------------------------------------------------------- /tvOS/Application Detail Pane/RPVApplicationDetailController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Application Detail Pane/RPVApplicationDetailController.h -------------------------------------------------------------------------------- /tvOS/Application Detail Pane/RPVApplicationDetailController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Application Detail Pane/RPVApplicationDetailController.m -------------------------------------------------------------------------------- /tvOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /tvOS/Assets.xcassets/Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Assets.xcassets/Icon.imageset/Contents.json -------------------------------------------------------------------------------- /tvOS/Assets.xcassets/Icon.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Assets.xcassets/Icon.imageset/Icon.png -------------------------------------------------------------------------------- /tvOS/Assets.xcassets/Icon.imageset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Assets.xcassets/Icon.imageset/Icon@2x.png -------------------------------------------------------------------------------- /tvOS/Assets.xcassets/Launch Image.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Assets.xcassets/Launch Image.launchimage/Contents.json -------------------------------------------------------------------------------- /tvOS/Assets.xcassets/author.imageset/Author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Assets.xcassets/author.imageset/Author.png -------------------------------------------------------------------------------- /tvOS/Assets.xcassets/author.imageset/Author@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Assets.xcassets/author.imageset/Author@2x.png -------------------------------------------------------------------------------- /tvOS/Assets.xcassets/author.imageset/Author@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Assets.xcassets/author.imageset/Author@3x.png -------------------------------------------------------------------------------- /tvOS/Assets.xcassets/author.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Assets.xcassets/author.imageset/Contents.json -------------------------------------------------------------------------------- /tvOS/Assets.xcassets/designer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Assets.xcassets/designer.imageset/Contents.json -------------------------------------------------------------------------------- /tvOS/Assets.xcassets/designer.imageset/Designer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Assets.xcassets/designer.imageset/Designer.png -------------------------------------------------------------------------------- /tvOS/Assets.xcassets/designer.imageset/Designer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Assets.xcassets/designer.imageset/Designer@2x.png -------------------------------------------------------------------------------- /tvOS/Assets.xcassets/designer.imageset/Designer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Assets.xcassets/designer.imageset/Designer@3x.png -------------------------------------------------------------------------------- /tvOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /tvOS/Headers/Preferences/PSBundleController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Headers/Preferences/PSBundleController.h -------------------------------------------------------------------------------- /tvOS/Headers/Preferences/PSControlTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Headers/Preferences/PSControlTableCell.h -------------------------------------------------------------------------------- /tvOS/Headers/Preferences/PSEditableTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Headers/Preferences/PSEditableTableCell.h -------------------------------------------------------------------------------- /tvOS/Headers/Preferences/PSListController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Headers/Preferences/PSListController.h -------------------------------------------------------------------------------- /tvOS/Headers/Preferences/PSListItemsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Headers/Preferences/PSListItemsController.h -------------------------------------------------------------------------------- /tvOS/Headers/Preferences/PSRootController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Headers/Preferences/PSRootController.h -------------------------------------------------------------------------------- /tvOS/Headers/Preferences/PSSliderTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Headers/Preferences/PSSliderTableCell.h -------------------------------------------------------------------------------- /tvOS/Headers/Preferences/PSSpecifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Headers/Preferences/PSSpecifier.h -------------------------------------------------------------------------------- /tvOS/Headers/Preferences/PSSwitchTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Headers/Preferences/PSSwitchTableCell.h -------------------------------------------------------------------------------- /tvOS/Headers/Preferences/PSTableCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Headers/Preferences/PSTableCell.h -------------------------------------------------------------------------------- /tvOS/Headers/Preferences/PSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Headers/Preferences/PSViewController.h -------------------------------------------------------------------------------- /tvOS/Headers/Preferences/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Headers/Preferences/Preferences.h -------------------------------------------------------------------------------- /tvOS/Headers/libMobileGestalt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Headers/libMobileGestalt.h -------------------------------------------------------------------------------- /tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Info.plist -------------------------------------------------------------------------------- /tvOS/Installed Pane/RPVStickyScrollView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Installed Pane/RPVStickyScrollView.h -------------------------------------------------------------------------------- /tvOS/Installed Pane/RPVStickyScrollView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Installed Pane/RPVStickyScrollView.m -------------------------------------------------------------------------------- /tvOS/Installed Pane/Table View/RPVInstalledTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Installed Pane/Table View/RPVInstalledTableViewCell.h -------------------------------------------------------------------------------- /tvOS/Installed Pane/Table View/RPVInstalledTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Installed Pane/Table View/RPVInstalledTableViewCell.m -------------------------------------------------------------------------------- /tvOS/Notifications/RPVNotificationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Notifications/RPVNotificationManager.h -------------------------------------------------------------------------------- /tvOS/Notifications/RPVNotificationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Notifications/RPVNotificationManager.m -------------------------------------------------------------------------------- /tvOS/Package/Applications/ReProvision.app/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Package/Applications/ReProvision.app/Assets.car -------------------------------------------------------------------------------- /tvOS/Package/Applications/ReProvision.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Package/Applications/ReProvision.app/Info.plist -------------------------------------------------------------------------------- /tvOS/Package/Applications/ReProvision.app/PackageVersion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Package/Applications/ReProvision.app/PackageVersion.plist -------------------------------------------------------------------------------- /tvOS/Package/Applications/ReProvision.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /tvOS/Package/Applications/ReProvision.app/ReProvision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Package/Applications/ReProvision.app/ReProvision -------------------------------------------------------------------------------- /tvOS/Package/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Package/DEBIAN/control -------------------------------------------------------------------------------- /tvOS/Package/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Package/DEBIAN/postinst -------------------------------------------------------------------------------- /tvOS/Package/DEBIAN/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Package/DEBIAN/prerm -------------------------------------------------------------------------------- /tvOS/Package/Library/LaunchDaemons/jp.soh.reprovisiond.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Package/Library/LaunchDaemons/jp.soh.reprovisiond.plist -------------------------------------------------------------------------------- /tvOS/Package/usr/bin/reprovisiond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Package/usr/bin/reprovisiond -------------------------------------------------------------------------------- /tvOS/PackageVersion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/PackageVersion.plist -------------------------------------------------------------------------------- /tvOS/Preferences.tbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Preferences.tbd -------------------------------------------------------------------------------- /tvOS/RPVResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/RPVResources.h -------------------------------------------------------------------------------- /tvOS/RPVResources.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/RPVResources.m -------------------------------------------------------------------------------- /tvOS/Settings Panes/RPVAdvancedController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Settings Panes/RPVAdvancedController.h -------------------------------------------------------------------------------- /tvOS/Settings Panes/RPVAdvancedController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Settings Panes/RPVAdvancedController.m -------------------------------------------------------------------------------- /tvOS/Settings Panes/RPVSettingsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Settings Panes/RPVSettingsController.h -------------------------------------------------------------------------------- /tvOS/Settings Panes/RPVSettingsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Settings Panes/RPVSettingsController.m -------------------------------------------------------------------------------- /tvOS/Settings Panes/RPVSettingsNavigationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Settings Panes/RPVSettingsNavigationViewController.h -------------------------------------------------------------------------------- /tvOS/Settings Panes/RPVSettingsNavigationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/Settings Panes/RPVSettingsNavigationViewController.m -------------------------------------------------------------------------------- /tvOS/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/aes.h -------------------------------------------------------------------------------- /tvOS/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/asn1.h -------------------------------------------------------------------------------- /tvOS/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /tvOS/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/asn1t.h -------------------------------------------------------------------------------- /tvOS/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/bio.h -------------------------------------------------------------------------------- /tvOS/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/blowfish.h -------------------------------------------------------------------------------- /tvOS/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/bn.h -------------------------------------------------------------------------------- /tvOS/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/buffer.h -------------------------------------------------------------------------------- /tvOS/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/camellia.h -------------------------------------------------------------------------------- /tvOS/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/cast.h -------------------------------------------------------------------------------- /tvOS/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/cmac.h -------------------------------------------------------------------------------- /tvOS/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/cms.h -------------------------------------------------------------------------------- /tvOS/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/comp.h -------------------------------------------------------------------------------- /tvOS/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/conf.h -------------------------------------------------------------------------------- /tvOS/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/conf_api.h -------------------------------------------------------------------------------- /tvOS/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/crypto.h -------------------------------------------------------------------------------- /tvOS/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/des.h -------------------------------------------------------------------------------- /tvOS/include/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/des_old.h -------------------------------------------------------------------------------- /tvOS/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/dh.h -------------------------------------------------------------------------------- /tvOS/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/dsa.h -------------------------------------------------------------------------------- /tvOS/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/dso.h -------------------------------------------------------------------------------- /tvOS/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/dtls1.h -------------------------------------------------------------------------------- /tvOS/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/e_os2.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ec.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ecdh.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /tvOS/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/engine.h -------------------------------------------------------------------------------- /tvOS/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/err.h -------------------------------------------------------------------------------- /tvOS/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/evp.h -------------------------------------------------------------------------------- /tvOS/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/hmac.h -------------------------------------------------------------------------------- /tvOS/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/idea.h -------------------------------------------------------------------------------- /tvOS/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/krb5_asn.h -------------------------------------------------------------------------------- /tvOS/include/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/kssl.h -------------------------------------------------------------------------------- /tvOS/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/lhash.h -------------------------------------------------------------------------------- /tvOS/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/md4.h -------------------------------------------------------------------------------- /tvOS/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/md5.h -------------------------------------------------------------------------------- /tvOS/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/mdc2.h -------------------------------------------------------------------------------- /tvOS/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/modes.h -------------------------------------------------------------------------------- /tvOS/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /tvOS/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/objects.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ocsp.h -------------------------------------------------------------------------------- /tvOS/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /tvOS/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/opensslv.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /tvOS/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/pem.h -------------------------------------------------------------------------------- /tvOS/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/pem2.h -------------------------------------------------------------------------------- /tvOS/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /tvOS/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /tvOS/include/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/pqueue.h -------------------------------------------------------------------------------- /tvOS/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/rand.h -------------------------------------------------------------------------------- /tvOS/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/rc2.h -------------------------------------------------------------------------------- /tvOS/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/rc4.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ripemd.h -------------------------------------------------------------------------------- /tvOS/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/rsa.h -------------------------------------------------------------------------------- /tvOS/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/safestack.h -------------------------------------------------------------------------------- /tvOS/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/seed.h -------------------------------------------------------------------------------- /tvOS/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/sha.h -------------------------------------------------------------------------------- /tvOS/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/srp.h -------------------------------------------------------------------------------- /tvOS/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/srtp.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ssl.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ssl2.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ssl23.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ssl3.h -------------------------------------------------------------------------------- /tvOS/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/stack.h -------------------------------------------------------------------------------- /tvOS/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/symhacks.h -------------------------------------------------------------------------------- /tvOS/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/tls1.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ts.h -------------------------------------------------------------------------------- /tvOS/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/txt_db.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ui.h -------------------------------------------------------------------------------- /tvOS/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/ui_compat.h -------------------------------------------------------------------------------- /tvOS/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /tvOS/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/x509.h -------------------------------------------------------------------------------- /tvOS/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /tvOS/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/include/openssl/x509v3.h -------------------------------------------------------------------------------- /tvOS/lib/libcrypto_tvOS.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/lib/libcrypto_tvOS.a -------------------------------------------------------------------------------- /tvOS/lib/libssl_tvOS.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/lib/libssl_tvOS.a -------------------------------------------------------------------------------- /tvOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sohsatoh/ReProvision-Reborn/HEAD/tvOS/main.m --------------------------------------------------------------------------------