gitextract_5cjxzza8/ ├── .gitignore ├── .gitmodules ├── Arti.podspec ├── Brewfile ├── Example/ │ ├── Example-Mac/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ └── Main.storyboard │ │ ├── Tor-Example-Mac-Bridging-Header.h │ │ ├── ViewController.swift │ │ └── main.m │ ├── Podfile │ ├── Tests/ │ │ ├── TORConfigurationTests.m │ │ ├── TORControllerTests.m │ │ ├── Tests-Info.plist │ │ └── Tests-Prefix.pch │ ├── Tor/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj/ │ │ │ └── Main.storyboard │ │ ├── Launch Screen.storyboard │ │ ├── Tor-Example-Bridging-Header.h │ │ ├── Tor-Info.plist │ │ ├── Tor-Prefix.pch │ │ ├── ViewController.swift │ │ └── main.m │ ├── Tor.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── Tor-Example-Mac.xcscheme │ │ └── Tor-Example.xcscheme │ └── Tor.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── README.md ├── Tor/ │ ├── Assets/ │ │ └── .gitkeep │ ├── Classes/ │ │ ├── Arti/ │ │ │ ├── TORArti.h │ │ │ └── TORArti.m │ │ ├── CTor/ │ │ │ ├── TORLogging.h │ │ │ ├── TORLogging.m │ │ │ ├── TORThread.h │ │ │ ├── TORThread.m │ │ │ ├── TORX25519KeyPair.h │ │ │ └── TORX25519KeyPair.m │ │ ├── Core/ │ │ │ ├── NSBundle+GeoIP.h │ │ │ ├── NSBundle+GeoIP.m │ │ │ ├── NSCharacterSet+PredefinedSets.h │ │ │ ├── NSCharacterSet+PredefinedSets.m │ │ │ ├── TORAuthKey.h │ │ │ ├── TORAuthKey.m │ │ │ ├── TORCircuit.h │ │ │ ├── TORCircuit.m │ │ │ ├── TORConfiguration.h │ │ │ ├── TORConfiguration.m │ │ │ ├── TORControlCommand.h │ │ │ ├── TORControlReplyCode.h │ │ │ ├── TORController.h │ │ │ ├── TORController.m │ │ │ ├── TORNode.h │ │ │ ├── TORNode.m │ │ │ ├── TOROnionAuth.h │ │ │ └── TOROnionAuth.m │ │ └── Onionmasq/ │ │ ├── Onionmasq.h │ │ └── Onionmasq.m │ ├── download.sh │ ├── mmap-cache.patch │ └── onionmasq.sh ├── Tor.podspec ├── build-xcframework.sh └── docs/ ├── Tor.json └── index.html