├── .gitignore ├── Changelog.md ├── LICENSE ├── PinnedCertExample ├── Base.lproj │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── PinnedCertExample-Info.plist ├── PinnedCertExample-Prefix.pch ├── RNAppDelegate.h ├── RNAppDelegate.m ├── RNViewController.h ├── RNViewController.m ├── en.lproj │ └── InfoPlist.strings ├── main.m ├── www.example.com.cer └── www.google.com.cer ├── README.md ├── RNPinnedCertValidator.podspec ├── RNPinnedCertValidator.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── RNPinnedCertValidator ├── RNPinnedCertValidator-Prefix.pch ├── RNPinnedCertValidator.h └── RNPinnedCertValidator.m └── RNPinnedCertValidatorTests ├── CA.cer ├── RNPinnedCertValidatorTests-Info.plist ├── RNPinnedCertValidatorTests.m ├── en.lproj └── InfoPlist.strings ├── www.example.com-CA.cer ├── www.example.com-Expired.cer ├── www.example.com.cer └── www.google.com.cer /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/LICENSE -------------------------------------------------------------------------------- /PinnedCertExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/PinnedCertExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PinnedCertExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/PinnedCertExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PinnedCertExample/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/PinnedCertExample/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /PinnedCertExample/PinnedCertExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/PinnedCertExample/PinnedCertExample-Info.plist -------------------------------------------------------------------------------- /PinnedCertExample/PinnedCertExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/PinnedCertExample/PinnedCertExample-Prefix.pch -------------------------------------------------------------------------------- /PinnedCertExample/RNAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/PinnedCertExample/RNAppDelegate.h -------------------------------------------------------------------------------- /PinnedCertExample/RNAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/PinnedCertExample/RNAppDelegate.m -------------------------------------------------------------------------------- /PinnedCertExample/RNViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/PinnedCertExample/RNViewController.h -------------------------------------------------------------------------------- /PinnedCertExample/RNViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/PinnedCertExample/RNViewController.m -------------------------------------------------------------------------------- /PinnedCertExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /PinnedCertExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/PinnedCertExample/main.m -------------------------------------------------------------------------------- /PinnedCertExample/www.example.com.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/PinnedCertExample/www.example.com.cer -------------------------------------------------------------------------------- /PinnedCertExample/www.google.com.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/PinnedCertExample/www.google.com.cer -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/README.md -------------------------------------------------------------------------------- /RNPinnedCertValidator.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/RNPinnedCertValidator.podspec -------------------------------------------------------------------------------- /RNPinnedCertValidator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/RNPinnedCertValidator.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RNPinnedCertValidator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/RNPinnedCertValidator.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RNPinnedCertValidator/RNPinnedCertValidator-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/RNPinnedCertValidator/RNPinnedCertValidator-Prefix.pch -------------------------------------------------------------------------------- /RNPinnedCertValidator/RNPinnedCertValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/RNPinnedCertValidator/RNPinnedCertValidator.h -------------------------------------------------------------------------------- /RNPinnedCertValidator/RNPinnedCertValidator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/RNPinnedCertValidator/RNPinnedCertValidator.m -------------------------------------------------------------------------------- /RNPinnedCertValidatorTests/CA.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/RNPinnedCertValidatorTests/CA.cer -------------------------------------------------------------------------------- /RNPinnedCertValidatorTests/RNPinnedCertValidatorTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/RNPinnedCertValidatorTests/RNPinnedCertValidatorTests-Info.plist -------------------------------------------------------------------------------- /RNPinnedCertValidatorTests/RNPinnedCertValidatorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/RNPinnedCertValidatorTests/RNPinnedCertValidatorTests.m -------------------------------------------------------------------------------- /RNPinnedCertValidatorTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /RNPinnedCertValidatorTests/www.example.com-CA.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/RNPinnedCertValidatorTests/www.example.com-CA.cer -------------------------------------------------------------------------------- /RNPinnedCertValidatorTests/www.example.com-Expired.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/RNPinnedCertValidatorTests/www.example.com-Expired.cer -------------------------------------------------------------------------------- /RNPinnedCertValidatorTests/www.example.com.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/RNPinnedCertValidatorTests/www.example.com.cer -------------------------------------------------------------------------------- /RNPinnedCertValidatorTests/www.google.com.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rnapier/RNPinnedCertValidator/HEAD/RNPinnedCertValidatorTests/www.google.com.cer --------------------------------------------------------------------------------