├── .gitattributes ├── .gitignore ├── CertPinner.podspec ├── LICENSE ├── README.md ├── android ├── .classpath ├── .project ├── .settings │ └── org.eclipse.buildship.core.prefs ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── criticalblue │ └── reactnative │ ├── CertPinnerModule.java │ ├── CertPinnerPackage.java │ └── PinnedClientFactory.java ├── cli ├── Log.js ├── cmds │ ├── gen.js │ ├── help.js │ ├── init.js │ └── version.js └── pinset.js ├── example ├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── android │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── app │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ └── org.eclipse.buildship.core.prefs │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ ├── criticalblue │ │ │ │ └── reactnative │ │ │ │ │ └── GeneratedCertificatePinner.java │ │ │ │ └── example │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── index.js ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── Headers │ │ │ ├── Private │ │ │ │ └── TrustKit │ │ │ │ │ ├── Dependencies │ │ │ │ │ ├── RSSwizzle │ │ │ │ │ │ └── RSSwizzle.h │ │ │ │ │ └── domain_registry │ │ │ │ │ │ ├── domain_registry.h │ │ │ │ │ │ ├── private │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ ├── registry_types.h │ │ │ │ │ │ ├── string_util.h │ │ │ │ │ │ ├── trie_node.h │ │ │ │ │ │ └── trie_search.h │ │ │ │ │ │ └── registry_tables_genfiles │ │ │ │ │ │ └── registry_tables.h │ │ │ │ │ ├── Pinning │ │ │ │ │ ├── public_key_utils.h │ │ │ │ │ └── ssl_pin_verifier.h │ │ │ │ │ ├── Reporting │ │ │ │ │ ├── TSKBackgroundReporter.h │ │ │ │ │ ├── TSKPinFailureReport.h │ │ │ │ │ ├── TSKReportsRateLimiter.h │ │ │ │ │ ├── reporting_utils.h │ │ │ │ │ └── vendor_identifier.h │ │ │ │ │ ├── Swizzling │ │ │ │ │ ├── TSKNSURLConnectionDelegateProxy.h │ │ │ │ │ └── TSKNSURLSessionDelegateProxy.h │ │ │ │ │ ├── TSKPinningValidator.h │ │ │ │ │ ├── TrustKit+Private.h │ │ │ │ │ ├── TrustKit.h │ │ │ │ │ ├── configuration_utils.h │ │ │ │ │ └── parse_configuration.h │ │ │ └── Public │ │ │ │ └── TrustKit │ │ │ │ ├── TSKPinningValidator.h │ │ │ │ └── TrustKit.h │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Target Support Files │ │ │ ├── Pods-example-tvOS │ │ │ │ ├── Pods-example-tvOS-acknowledgements.markdown │ │ │ │ ├── Pods-example-tvOS-acknowledgements.plist │ │ │ │ ├── Pods-example-tvOS-dummy.m │ │ │ │ ├── Pods-example-tvOS-frameworks.sh │ │ │ │ ├── Pods-example-tvOS-resources.sh │ │ │ │ ├── Pods-example-tvOS.debug.xcconfig │ │ │ │ └── Pods-example-tvOS.release.xcconfig │ │ │ ├── Pods-example-tvOSTests │ │ │ │ ├── Pods-example-tvOSTests-acknowledgements.markdown │ │ │ │ ├── Pods-example-tvOSTests-acknowledgements.plist │ │ │ │ ├── Pods-example-tvOSTests-dummy.m │ │ │ │ ├── Pods-example-tvOSTests-frameworks.sh │ │ │ │ ├── Pods-example-tvOSTests-resources.sh │ │ │ │ ├── Pods-example-tvOSTests.debug.xcconfig │ │ │ │ └── Pods-example-tvOSTests.release.xcconfig │ │ │ ├── Pods-example │ │ │ │ ├── Pods-example-acknowledgements.markdown │ │ │ │ ├── Pods-example-acknowledgements.plist │ │ │ │ ├── Pods-example-dummy.m │ │ │ │ ├── Pods-example-frameworks.sh │ │ │ │ ├── Pods-example-resources.sh │ │ │ │ ├── Pods-example.debug.xcconfig │ │ │ │ └── Pods-example.release.xcconfig │ │ │ ├── Pods-exampleTests │ │ │ │ ├── Pods-exampleTests-acknowledgements.markdown │ │ │ │ ├── Pods-exampleTests-acknowledgements.plist │ │ │ │ ├── Pods-exampleTests-dummy.m │ │ │ │ ├── Pods-exampleTests-frameworks.sh │ │ │ │ ├── Pods-exampleTests-resources.sh │ │ │ │ ├── Pods-exampleTests.debug.xcconfig │ │ │ │ └── Pods-exampleTests.release.xcconfig │ │ │ └── TrustKit │ │ │ │ ├── TrustKit-dummy.m │ │ │ │ ├── TrustKit-prefix.pch │ │ │ │ └── TrustKit.xcconfig │ │ └── TrustKit │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── TrustKit │ │ │ ├── Dependencies │ │ │ ├── RSSwizzle │ │ │ │ ├── RSSwizzle.h │ │ │ │ └── RSSwizzle.m │ │ │ └── domain_registry │ │ │ │ ├── domain_registry.h │ │ │ │ ├── private │ │ │ │ ├── assert.c │ │ │ │ ├── assert.h │ │ │ │ ├── init_registry_tables.c │ │ │ │ ├── registry_search.c │ │ │ │ ├── registry_types.h │ │ │ │ ├── string_util.h │ │ │ │ ├── trie_node.h │ │ │ │ ├── trie_search.c │ │ │ │ └── trie_search.h │ │ │ │ └── registry_tables_genfiles │ │ │ │ └── registry_tables.h │ │ │ ├── Pinning │ │ │ ├── public_key_utils.h │ │ │ ├── public_key_utils.m │ │ │ ├── ssl_pin_verifier.h │ │ │ └── ssl_pin_verifier.m │ │ │ ├── Reporting │ │ │ ├── TSKBackgroundReporter.h │ │ │ ├── TSKBackgroundReporter.m │ │ │ ├── TSKPinFailureReport.h │ │ │ ├── TSKPinFailureReport.m │ │ │ ├── TSKReportsRateLimiter.h │ │ │ ├── TSKReportsRateLimiter.m │ │ │ ├── reporting_utils.h │ │ │ ├── reporting_utils.m │ │ │ ├── vendor_identifier.h │ │ │ └── vendor_identifier.m │ │ │ ├── Swizzling │ │ │ ├── TSKNSURLConnectionDelegateProxy.h │ │ │ ├── TSKNSURLConnectionDelegateProxy.m │ │ │ ├── TSKNSURLSessionDelegateProxy.h │ │ │ └── TSKNSURLSessionDelegateProxy.m │ │ │ ├── TSKPinningValidator.h │ │ │ ├── TSKPinningValidator.m │ │ │ ├── TrustKit+Private.h │ │ │ ├── TrustKit.h │ │ │ ├── TrustKit.m │ │ │ ├── configuration_utils.h │ │ │ ├── configuration_utils.m │ │ │ ├── parse_configuration.h │ │ │ └── parse_configuration.m │ ├── example-tvOS │ │ └── Info.plist │ ├── example-tvOSTests │ │ └── Info.plist │ ├── example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── example-tvOS.xcscheme │ │ │ └── example.xcscheme │ ├── example.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── exampleTests │ │ ├── Info.plist │ │ └── exampleTests.m ├── package.json ├── pinset.json └── src │ ├── App.js │ ├── ShapeView.js │ └── assets │ ├── approov_largelogo.png │ ├── confused.png │ └── hello.png ├── index.js ├── ios ├── CertPinner.h ├── CertPinner.m ├── CertPinner.podspec ├── CertPinner.xcodeproj │ └── project.pbxproj └── CertPinner.xcworkspace │ └── contents.xcworkspacedata └── package.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/.gitignore -------------------------------------------------------------------------------- /CertPinner.podspec: -------------------------------------------------------------------------------- 1 | ios/CertPinner.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/README.md -------------------------------------------------------------------------------- /android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/android/.classpath -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/criticalblue/reactnative/CertPinnerModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/android/src/main/java/com/criticalblue/reactnative/CertPinnerModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/criticalblue/reactnative/CertPinnerPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/android/src/main/java/com/criticalblue/reactnative/CertPinnerPackage.java -------------------------------------------------------------------------------- /android/src/main/java/com/criticalblue/reactnative/PinnedClientFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/android/src/main/java/com/criticalblue/reactnative/PinnedClientFactory.java -------------------------------------------------------------------------------- /cli/Log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/cli/Log.js -------------------------------------------------------------------------------- /cli/cmds/gen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/cli/cmds/gen.js -------------------------------------------------------------------------------- /cli/cmds/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/cli/cmds/help.js -------------------------------------------------------------------------------- /cli/cmds/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/cli/cmds/init.js -------------------------------------------------------------------------------- /cli/cmds/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/cli/cmds/version.js -------------------------------------------------------------------------------- /cli/pinset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/cli/pinset.js -------------------------------------------------------------------------------- /example/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/.buckconfig -------------------------------------------------------------------------------- /example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/.flowconfig -------------------------------------------------------------------------------- /example/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/.project -------------------------------------------------------------------------------- /example/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /example/android/app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/.classpath -------------------------------------------------------------------------------- /example/android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/.project -------------------------------------------------------------------------------- /example/android/app/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /example/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/BUCK -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/criticalblue/reactnative/GeneratedCertificatePinner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/java/com/criticalblue/reactnative/GeneratedCertificatePinner.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/java/com/example/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/java/com/example/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/keystores/BUCK -------------------------------------------------------------------------------- /example/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/app.json -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/index.js -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Dependencies/RSSwizzle/RSSwizzle.h: -------------------------------------------------------------------------------- 1 | ../../../../../TrustKit/TrustKit/Dependencies/RSSwizzle/RSSwizzle.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Dependencies/domain_registry/domain_registry.h: -------------------------------------------------------------------------------- 1 | ../../../../../TrustKit/TrustKit/Dependencies/domain_registry/domain_registry.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Dependencies/domain_registry/private/assert.h: -------------------------------------------------------------------------------- 1 | ../../../../../../TrustKit/TrustKit/Dependencies/domain_registry/private/assert.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Dependencies/domain_registry/private/registry_types.h: -------------------------------------------------------------------------------- 1 | ../../../../../../TrustKit/TrustKit/Dependencies/domain_registry/private/registry_types.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Dependencies/domain_registry/private/string_util.h: -------------------------------------------------------------------------------- 1 | ../../../../../../TrustKit/TrustKit/Dependencies/domain_registry/private/string_util.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Dependencies/domain_registry/private/trie_node.h: -------------------------------------------------------------------------------- 1 | ../../../../../../TrustKit/TrustKit/Dependencies/domain_registry/private/trie_node.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Dependencies/domain_registry/private/trie_search.h: -------------------------------------------------------------------------------- 1 | ../../../../../../TrustKit/TrustKit/Dependencies/domain_registry/private/trie_search.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Dependencies/domain_registry/registry_tables_genfiles/registry_tables.h: -------------------------------------------------------------------------------- 1 | ../../../../../../TrustKit/TrustKit/Dependencies/domain_registry/registry_tables_genfiles/registry_tables.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Pinning/public_key_utils.h: -------------------------------------------------------------------------------- 1 | ../../../../TrustKit/TrustKit/Pinning/public_key_utils.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Pinning/ssl_pin_verifier.h: -------------------------------------------------------------------------------- 1 | ../../../../TrustKit/TrustKit/Pinning/ssl_pin_verifier.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Reporting/TSKBackgroundReporter.h: -------------------------------------------------------------------------------- 1 | ../../../../TrustKit/TrustKit/Reporting/TSKBackgroundReporter.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Reporting/TSKPinFailureReport.h: -------------------------------------------------------------------------------- 1 | ../../../../TrustKit/TrustKit/Reporting/TSKPinFailureReport.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Reporting/TSKReportsRateLimiter.h: -------------------------------------------------------------------------------- 1 | ../../../../TrustKit/TrustKit/Reporting/TSKReportsRateLimiter.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Reporting/reporting_utils.h: -------------------------------------------------------------------------------- 1 | ../../../../TrustKit/TrustKit/Reporting/reporting_utils.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Reporting/vendor_identifier.h: -------------------------------------------------------------------------------- 1 | ../../../../TrustKit/TrustKit/Reporting/vendor_identifier.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Swizzling/TSKNSURLConnectionDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../../TrustKit/TrustKit/Swizzling/TSKNSURLConnectionDelegateProxy.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/Swizzling/TSKNSURLSessionDelegateProxy.h: -------------------------------------------------------------------------------- 1 | ../../../../TrustKit/TrustKit/Swizzling/TSKNSURLSessionDelegateProxy.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/TSKPinningValidator.h: -------------------------------------------------------------------------------- 1 | ../../../TrustKit/TrustKit/TSKPinningValidator.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/TrustKit+Private.h: -------------------------------------------------------------------------------- 1 | ../../../TrustKit/TrustKit/TrustKit+Private.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/TrustKit.h: -------------------------------------------------------------------------------- 1 | ../../../TrustKit/TrustKit/TrustKit.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/configuration_utils.h: -------------------------------------------------------------------------------- 1 | ../../../TrustKit/TrustKit/configuration_utils.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Private/TrustKit/parse_configuration.h: -------------------------------------------------------------------------------- 1 | ../../../TrustKit/TrustKit/parse_configuration.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Public/TrustKit/TSKPinningValidator.h: -------------------------------------------------------------------------------- 1 | ../../../TrustKit/TrustKit/TSKPinningValidator.h -------------------------------------------------------------------------------- /example/ios/Pods/Headers/Public/TrustKit/TrustKit.h: -------------------------------------------------------------------------------- 1 | ../../../TrustKit/TrustKit/TrustKit.h -------------------------------------------------------------------------------- /example/ios/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Manifest.lock -------------------------------------------------------------------------------- /example/ios/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS-acknowledgements.markdown -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS-acknowledgements.plist -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS-dummy.m -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS-frameworks.sh -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS-resources.sh -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS.debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOS/Pods-example-tvOS.release.xcconfig -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests-acknowledgements.markdown -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests-acknowledgements.plist -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests-dummy.m -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests-frameworks.sh -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests-resources.sh -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests.debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example-tvOSTests/Pods-example-tvOSTests.release.xcconfig -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example/Pods-example-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example/Pods-example-acknowledgements.markdown -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example/Pods-example-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example/Pods-example-acknowledgements.plist -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example/Pods-example-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example/Pods-example-dummy.m -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example/Pods-example-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example/Pods-example-frameworks.sh -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example/Pods-example-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example/Pods-example-resources.sh -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example/Pods-example.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example/Pods-example.debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-example/Pods-example.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-example/Pods-example.release.xcconfig -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests-acknowledgements.markdown -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests-acknowledgements.plist -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests-dummy.m -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests-frameworks.sh -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests-resources.sh -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests.debug.xcconfig -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/Pods-exampleTests/Pods-exampleTests.release.xcconfig -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/TrustKit/TrustKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/TrustKit/TrustKit-dummy.m -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/TrustKit/TrustKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/TrustKit/TrustKit-prefix.pch -------------------------------------------------------------------------------- /example/ios/Pods/Target Support Files/TrustKit/TrustKit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/Target Support Files/TrustKit/TrustKit.xcconfig -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/LICENSE -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/README.md -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Dependencies/RSSwizzle/RSSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Dependencies/RSSwizzle/RSSwizzle.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Dependencies/RSSwizzle/RSSwizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Dependencies/RSSwizzle/RSSwizzle.m -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/domain_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/domain_registry.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/assert.c -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/assert.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/init_registry_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/init_registry_tables.c -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/registry_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/registry_search.c -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/registry_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/registry_types.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/string_util.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/trie_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/trie_node.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/trie_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/trie_search.c -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/trie_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/private/trie_search.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/registry_tables_genfiles/registry_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Dependencies/domain_registry/registry_tables_genfiles/registry_tables.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Pinning/public_key_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Pinning/public_key_utils.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Pinning/public_key_utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Pinning/public_key_utils.m -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Pinning/ssl_pin_verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Pinning/ssl_pin_verifier.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Pinning/ssl_pin_verifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Pinning/ssl_pin_verifier.m -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Reporting/TSKBackgroundReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Reporting/TSKBackgroundReporter.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Reporting/TSKBackgroundReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Reporting/TSKBackgroundReporter.m -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Reporting/TSKPinFailureReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Reporting/TSKPinFailureReport.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Reporting/TSKPinFailureReport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Reporting/TSKPinFailureReport.m -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Reporting/TSKReportsRateLimiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Reporting/TSKReportsRateLimiter.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Reporting/TSKReportsRateLimiter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Reporting/TSKReportsRateLimiter.m -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Reporting/reporting_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Reporting/reporting_utils.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Reporting/reporting_utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Reporting/reporting_utils.m -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Reporting/vendor_identifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Reporting/vendor_identifier.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Reporting/vendor_identifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Reporting/vendor_identifier.m -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Swizzling/TSKNSURLConnectionDelegateProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Swizzling/TSKNSURLConnectionDelegateProxy.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Swizzling/TSKNSURLConnectionDelegateProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Swizzling/TSKNSURLConnectionDelegateProxy.m -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Swizzling/TSKNSURLSessionDelegateProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Swizzling/TSKNSURLSessionDelegateProxy.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/Swizzling/TSKNSURLSessionDelegateProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/Swizzling/TSKNSURLSessionDelegateProxy.m -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/TSKPinningValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/TSKPinningValidator.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/TSKPinningValidator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/TSKPinningValidator.m -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/TrustKit+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/TrustKit+Private.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/TrustKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/TrustKit.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/TrustKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/TrustKit.m -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/configuration_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/configuration_utils.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/configuration_utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/configuration_utils.m -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/parse_configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/parse_configuration.h -------------------------------------------------------------------------------- /example/ios/Pods/TrustKit/TrustKit/parse_configuration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/Pods/TrustKit/TrustKit/parse_configuration.m -------------------------------------------------------------------------------- /example/ios/example-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example-tvOS/Info.plist -------------------------------------------------------------------------------- /example/ios/example-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example-tvOSTests/Info.plist -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example-tvOS.xcscheme -------------------------------------------------------------------------------- /example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example/Info.plist -------------------------------------------------------------------------------- /example/ios/example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/example/main.m -------------------------------------------------------------------------------- /example/ios/exampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/exampleTests/Info.plist -------------------------------------------------------------------------------- /example/ios/exampleTests/exampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/ios/exampleTests/exampleTests.m -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/package.json -------------------------------------------------------------------------------- /example/pinset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/pinset.json -------------------------------------------------------------------------------- /example/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/src/App.js -------------------------------------------------------------------------------- /example/src/ShapeView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/src/ShapeView.js -------------------------------------------------------------------------------- /example/src/assets/approov_largelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/src/assets/approov_largelogo.png -------------------------------------------------------------------------------- /example/src/assets/confused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/src/assets/confused.png -------------------------------------------------------------------------------- /example/src/assets/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/example/src/assets/hello.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/index.js -------------------------------------------------------------------------------- /ios/CertPinner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/ios/CertPinner.h -------------------------------------------------------------------------------- /ios/CertPinner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/ios/CertPinner.m -------------------------------------------------------------------------------- /ios/CertPinner.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/ios/CertPinner.podspec -------------------------------------------------------------------------------- /ios/CertPinner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/ios/CertPinner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/CertPinner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/ios/CertPinner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/approov/react-native-cert-pinner/HEAD/package.json --------------------------------------------------------------------------------