├── .gitattributes ├── .gitignore ├── README.md └── src ├── afc_internal ├── afc_filesystem.cc ├── afc_filesystem.h ├── afc_upload.cc └── afc_upload.h ├── base ├── atl │ ├── dll_main.cc │ └── dll_main.h ├── basetypes.h ├── file │ ├── directory.cc │ ├── directory.h │ ├── path.cc │ └── path.h ├── format_size.h ├── lock_impl.h ├── lock_mutex.h ├── message_hook.cc ├── message_hook.h ├── message_loop.h ├── object │ └── hwnd_object.h ├── process_token.cc ├── process_token.h ├── string │ ├── string_case.cc │ ├── string_case.h │ ├── string_conv.cc │ ├── string_conv.h │ ├── string_split.cc │ ├── string_split.h │ ├── urls_conv.cc │ └── urls_conv.h ├── windows_hardware.cc ├── windows_hardware.h ├── windows_process.cc ├── windows_process.h ├── windows_version.cc └── windows_version.h ├── exception ├── exception_dump.cc └── exception_dump.h ├── ios_authorize ├── IosConnect.cpp ├── MobileDevice.h ├── Sync.cpp ├── Sync.h ├── Universal.cpp ├── Universal.h ├── apple_device_auth.cc ├── apple_device_auth.h ├── apple_import.cpp ├── apple_import.h ├── apple_mobile_device_ex.h ├── apple_remote_auth.cc ├── apple_remote_auth.h ├── iTunesInterface.cpp ├── iTunesInterface.h ├── itunes_internal_abi.cc ├── itunes_internal_abi.h ├── itunes_module.cc ├── itunes_module.h ├── itunes_module_state.cc ├── itunes_module_state.h ├── rq_gen.h ├── rq_sig_gen.h ├── rs_gen.h └── rs_sig_gen.h ├── ipa_internal ├── ipa_bundle_info.cc ├── ipa_bundle_info.h ├── ipa_content.cc └── ipa_content.h ├── itunes_reverse ├── itunes_abi.cc └── itunes_abi.h └── zip_internal ├── zip_internal_impl.cc ├── zip_internal_impl.h ├── zip_object_reader.cc └── zip_object_reader.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/README.md -------------------------------------------------------------------------------- /src/afc_internal/afc_filesystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/afc_internal/afc_filesystem.cc -------------------------------------------------------------------------------- /src/afc_internal/afc_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/afc_internal/afc_filesystem.h -------------------------------------------------------------------------------- /src/afc_internal/afc_upload.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/afc_internal/afc_upload.cc -------------------------------------------------------------------------------- /src/afc_internal/afc_upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/afc_internal/afc_upload.h -------------------------------------------------------------------------------- /src/base/atl/dll_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/atl/dll_main.cc -------------------------------------------------------------------------------- /src/base/atl/dll_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/atl/dll_main.h -------------------------------------------------------------------------------- /src/base/basetypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/basetypes.h -------------------------------------------------------------------------------- /src/base/file/directory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/file/directory.cc -------------------------------------------------------------------------------- /src/base/file/directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/file/directory.h -------------------------------------------------------------------------------- /src/base/file/path.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/file/path.cc -------------------------------------------------------------------------------- /src/base/file/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/file/path.h -------------------------------------------------------------------------------- /src/base/format_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/format_size.h -------------------------------------------------------------------------------- /src/base/lock_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/lock_impl.h -------------------------------------------------------------------------------- /src/base/lock_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/lock_mutex.h -------------------------------------------------------------------------------- /src/base/message_hook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/message_hook.cc -------------------------------------------------------------------------------- /src/base/message_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/message_hook.h -------------------------------------------------------------------------------- /src/base/message_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/message_loop.h -------------------------------------------------------------------------------- /src/base/object/hwnd_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/object/hwnd_object.h -------------------------------------------------------------------------------- /src/base/process_token.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/process_token.cc -------------------------------------------------------------------------------- /src/base/process_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/process_token.h -------------------------------------------------------------------------------- /src/base/string/string_case.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/string/string_case.cc -------------------------------------------------------------------------------- /src/base/string/string_case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/string/string_case.h -------------------------------------------------------------------------------- /src/base/string/string_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/string/string_conv.cc -------------------------------------------------------------------------------- /src/base/string/string_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/string/string_conv.h -------------------------------------------------------------------------------- /src/base/string/string_split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/string/string_split.cc -------------------------------------------------------------------------------- /src/base/string/string_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/string/string_split.h -------------------------------------------------------------------------------- /src/base/string/urls_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/string/urls_conv.cc -------------------------------------------------------------------------------- /src/base/string/urls_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/string/urls_conv.h -------------------------------------------------------------------------------- /src/base/windows_hardware.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/windows_hardware.cc -------------------------------------------------------------------------------- /src/base/windows_hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/windows_hardware.h -------------------------------------------------------------------------------- /src/base/windows_process.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/windows_process.cc -------------------------------------------------------------------------------- /src/base/windows_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/windows_process.h -------------------------------------------------------------------------------- /src/base/windows_version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/windows_version.cc -------------------------------------------------------------------------------- /src/base/windows_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/base/windows_version.h -------------------------------------------------------------------------------- /src/exception/exception_dump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/exception/exception_dump.cc -------------------------------------------------------------------------------- /src/exception/exception_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/exception/exception_dump.h -------------------------------------------------------------------------------- /src/ios_authorize/IosConnect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/IosConnect.cpp -------------------------------------------------------------------------------- /src/ios_authorize/MobileDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/MobileDevice.h -------------------------------------------------------------------------------- /src/ios_authorize/Sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/Sync.cpp -------------------------------------------------------------------------------- /src/ios_authorize/Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/Sync.h -------------------------------------------------------------------------------- /src/ios_authorize/Universal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/Universal.cpp -------------------------------------------------------------------------------- /src/ios_authorize/Universal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/Universal.h -------------------------------------------------------------------------------- /src/ios_authorize/apple_device_auth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/apple_device_auth.cc -------------------------------------------------------------------------------- /src/ios_authorize/apple_device_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/apple_device_auth.h -------------------------------------------------------------------------------- /src/ios_authorize/apple_import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/apple_import.cpp -------------------------------------------------------------------------------- /src/ios_authorize/apple_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/apple_import.h -------------------------------------------------------------------------------- /src/ios_authorize/apple_mobile_device_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/apple_mobile_device_ex.h -------------------------------------------------------------------------------- /src/ios_authorize/apple_remote_auth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/apple_remote_auth.cc -------------------------------------------------------------------------------- /src/ios_authorize/apple_remote_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/apple_remote_auth.h -------------------------------------------------------------------------------- /src/ios_authorize/iTunesInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/iTunesInterface.cpp -------------------------------------------------------------------------------- /src/ios_authorize/iTunesInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/iTunesInterface.h -------------------------------------------------------------------------------- /src/ios_authorize/itunes_internal_abi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/itunes_internal_abi.cc -------------------------------------------------------------------------------- /src/ios_authorize/itunes_internal_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/itunes_internal_abi.h -------------------------------------------------------------------------------- /src/ios_authorize/itunes_module.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/itunes_module.cc -------------------------------------------------------------------------------- /src/ios_authorize/itunes_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/itunes_module.h -------------------------------------------------------------------------------- /src/ios_authorize/itunes_module_state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/itunes_module_state.cc -------------------------------------------------------------------------------- /src/ios_authorize/itunes_module_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/itunes_module_state.h -------------------------------------------------------------------------------- /src/ios_authorize/rq_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/rq_gen.h -------------------------------------------------------------------------------- /src/ios_authorize/rq_sig_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/rq_sig_gen.h -------------------------------------------------------------------------------- /src/ios_authorize/rs_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/rs_gen.h -------------------------------------------------------------------------------- /src/ios_authorize/rs_sig_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ios_authorize/rs_sig_gen.h -------------------------------------------------------------------------------- /src/ipa_internal/ipa_bundle_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ipa_internal/ipa_bundle_info.cc -------------------------------------------------------------------------------- /src/ipa_internal/ipa_bundle_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ipa_internal/ipa_bundle_info.h -------------------------------------------------------------------------------- /src/ipa_internal/ipa_content.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ipa_internal/ipa_content.cc -------------------------------------------------------------------------------- /src/ipa_internal/ipa_content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/ipa_internal/ipa_content.h -------------------------------------------------------------------------------- /src/itunes_reverse/itunes_abi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/itunes_reverse/itunes_abi.cc -------------------------------------------------------------------------------- /src/itunes_reverse/itunes_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/itunes_reverse/itunes_abi.h -------------------------------------------------------------------------------- /src/zip_internal/zip_internal_impl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/zip_internal/zip_internal_impl.cc -------------------------------------------------------------------------------- /src/zip_internal/zip_internal_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/zip_internal/zip_internal_impl.h -------------------------------------------------------------------------------- /src/zip_internal/zip_object_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/zip_internal/zip_object_reader.cc -------------------------------------------------------------------------------- /src/zip_internal/zip_object_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cxxrev0to1dev/apple_auth/HEAD/src/zip_internal/zip_object_reader.h --------------------------------------------------------------------------------