├── .gitignore ├── .travis.yml ├── LICENSE ├── ObfsThread.h ├── ObfsThread.m ├── README.md └── example ├── Cartfile ├── Cartfile.resolved ├── ExampleObfs.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ExampleObfs ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CKHTTPConnection.h ├── CKHTTPConnection.m ├── ExampleObfs-Bridging-Header.h ├── Info.plist ├── NSData+CocoaDevUsersAdditions.h ├── NSData+CocoaDevUsersAdditions.m ├── TorProxyURLProtocol.h ├── TorProxyURLProtocol.m ├── TorProxyURLProtocol.swift └── ViewController.swift ├── ExampleObfsTests ├── ExampleObfsTests.swift └── Info.plist └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/LICENSE -------------------------------------------------------------------------------- /ObfsThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/ObfsThread.h -------------------------------------------------------------------------------- /ObfsThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/ObfsThread.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/README.md -------------------------------------------------------------------------------- /example/Cartfile: -------------------------------------------------------------------------------- 1 | github "mtigas/Tor.framework" "tor0.2.8.2-openssl1.0.2g" 2 | -------------------------------------------------------------------------------- /example/Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "mtigas/Tor.framework" "d9be0f78a71726f1cc6ffcd8fa7fdfb78566eb37" 2 | -------------------------------------------------------------------------------- /example/ExampleObfs.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ExampleObfs.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ExampleObfs/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/AppDelegate.swift -------------------------------------------------------------------------------- /example/ExampleObfs/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ExampleObfs/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ExampleObfs/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example/ExampleObfs/CKHTTPConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/CKHTTPConnection.h -------------------------------------------------------------------------------- /example/ExampleObfs/CKHTTPConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/CKHTTPConnection.m -------------------------------------------------------------------------------- /example/ExampleObfs/ExampleObfs-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/ExampleObfs-Bridging-Header.h -------------------------------------------------------------------------------- /example/ExampleObfs/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/Info.plist -------------------------------------------------------------------------------- /example/ExampleObfs/NSData+CocoaDevUsersAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/NSData+CocoaDevUsersAdditions.h -------------------------------------------------------------------------------- /example/ExampleObfs/NSData+CocoaDevUsersAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/NSData+CocoaDevUsersAdditions.m -------------------------------------------------------------------------------- /example/ExampleObfs/TorProxyURLProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/TorProxyURLProtocol.h -------------------------------------------------------------------------------- /example/ExampleObfs/TorProxyURLProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/TorProxyURLProtocol.m -------------------------------------------------------------------------------- /example/ExampleObfs/TorProxyURLProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/TorProxyURLProtocol.swift -------------------------------------------------------------------------------- /example/ExampleObfs/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfs/ViewController.swift -------------------------------------------------------------------------------- /example/ExampleObfsTests/ExampleObfsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfsTests/ExampleObfsTests.swift -------------------------------------------------------------------------------- /example/ExampleObfsTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/ExampleObfsTests/Info.plist -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtigas/iObfs/HEAD/example/README.md --------------------------------------------------------------------------------