├── .gitignore ├── Default-568h@2x.png ├── LICENSE ├── PDKeychainBindingsController.podspec ├── PDKeychainBindingsController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── PDKeychainBindingsControllerOSXExample.xcscheme │ └── PDKeychainBindingsControlleriOSExample.xcscheme ├── PDKeychainBindingsController ├── PDKeychainBindings.h ├── PDKeychainBindings.m ├── PDKeychainBindingsController.h └── PDKeychainBindingsController.m ├── PDKeychainBindingsControllerOSXExample ├── PDKeychainBindingsControllerOSXExample-Info.plist ├── PDKeychainBindingsControllerOSXExampleAppDelegate.m └── en.lproj │ └── MainMenu.xib ├── PDKeychainBindingsControllerOSXExampleTests ├── PDKeychainBindingsControllerTest.m └── PDKeychainBindingsTest.m ├── PDKeychainBindingsControllerTests-Info.plist ├── PDKeychainBindingsControllerTests-Prefix.pch ├── PDKeychainBindingsControlleriOSExample ├── PDKeychainBindingsControlleriOSExample-Info.plist ├── PDKeychainBindingsControlleriOSExample-Prefix.pch ├── PDKeychainBindingsControlleriOSExampleAppDelegate.h ├── PDKeychainBindingsControlleriOSExampleAppDelegate.m ├── PDKeychainBindingsControlleriOSExampleViewController.h ├── PDKeychainBindingsControlleriOSExampleViewController.m └── en.lproj │ ├── MainWindow.xib │ └── PDKeychainBindingsControlleriOSExampleViewController.xib ├── PDKeychainBindingsControlleriOSExampleTests ├── PDKeychainBindingsTest.h └── PDKeychainBindingsTest.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/.gitignore -------------------------------------------------------------------------------- /Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/Default-568h@2x.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/LICENSE -------------------------------------------------------------------------------- /PDKeychainBindingsController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsController.podspec -------------------------------------------------------------------------------- /PDKeychainBindingsController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PDKeychainBindingsController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PDKeychainBindingsController.xcodeproj/xcshareddata/xcschemes/PDKeychainBindingsControllerOSXExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsController.xcodeproj/xcshareddata/xcschemes/PDKeychainBindingsControllerOSXExample.xcscheme -------------------------------------------------------------------------------- /PDKeychainBindingsController.xcodeproj/xcshareddata/xcschemes/PDKeychainBindingsControlleriOSExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsController.xcodeproj/xcshareddata/xcschemes/PDKeychainBindingsControlleriOSExample.xcscheme -------------------------------------------------------------------------------- /PDKeychainBindingsController/PDKeychainBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsController/PDKeychainBindings.h -------------------------------------------------------------------------------- /PDKeychainBindingsController/PDKeychainBindings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsController/PDKeychainBindings.m -------------------------------------------------------------------------------- /PDKeychainBindingsController/PDKeychainBindingsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsController/PDKeychainBindingsController.h -------------------------------------------------------------------------------- /PDKeychainBindingsController/PDKeychainBindingsController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsController/PDKeychainBindingsController.m -------------------------------------------------------------------------------- /PDKeychainBindingsControllerOSXExample/PDKeychainBindingsControllerOSXExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControllerOSXExample/PDKeychainBindingsControllerOSXExample-Info.plist -------------------------------------------------------------------------------- /PDKeychainBindingsControllerOSXExample/PDKeychainBindingsControllerOSXExampleAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControllerOSXExample/PDKeychainBindingsControllerOSXExampleAppDelegate.m -------------------------------------------------------------------------------- /PDKeychainBindingsControllerOSXExample/en.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControllerOSXExample/en.lproj/MainMenu.xib -------------------------------------------------------------------------------- /PDKeychainBindingsControllerOSXExampleTests/PDKeychainBindingsControllerTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControllerOSXExampleTests/PDKeychainBindingsControllerTest.m -------------------------------------------------------------------------------- /PDKeychainBindingsControllerOSXExampleTests/PDKeychainBindingsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControllerOSXExampleTests/PDKeychainBindingsTest.m -------------------------------------------------------------------------------- /PDKeychainBindingsControllerTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControllerTests-Info.plist -------------------------------------------------------------------------------- /PDKeychainBindingsControllerTests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControllerTests-Prefix.pch -------------------------------------------------------------------------------- /PDKeychainBindingsControlleriOSExample/PDKeychainBindingsControlleriOSExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControlleriOSExample/PDKeychainBindingsControlleriOSExample-Info.plist -------------------------------------------------------------------------------- /PDKeychainBindingsControlleriOSExample/PDKeychainBindingsControlleriOSExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControlleriOSExample/PDKeychainBindingsControlleriOSExample-Prefix.pch -------------------------------------------------------------------------------- /PDKeychainBindingsControlleriOSExample/PDKeychainBindingsControlleriOSExampleAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControlleriOSExample/PDKeychainBindingsControlleriOSExampleAppDelegate.h -------------------------------------------------------------------------------- /PDKeychainBindingsControlleriOSExample/PDKeychainBindingsControlleriOSExampleAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControlleriOSExample/PDKeychainBindingsControlleriOSExampleAppDelegate.m -------------------------------------------------------------------------------- /PDKeychainBindingsControlleriOSExample/PDKeychainBindingsControlleriOSExampleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControlleriOSExample/PDKeychainBindingsControlleriOSExampleViewController.h -------------------------------------------------------------------------------- /PDKeychainBindingsControlleriOSExample/PDKeychainBindingsControlleriOSExampleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControlleriOSExample/PDKeychainBindingsControlleriOSExampleViewController.m -------------------------------------------------------------------------------- /PDKeychainBindingsControlleriOSExample/en.lproj/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControlleriOSExample/en.lproj/MainWindow.xib -------------------------------------------------------------------------------- /PDKeychainBindingsControlleriOSExample/en.lproj/PDKeychainBindingsControlleriOSExampleViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControlleriOSExample/en.lproj/PDKeychainBindingsControlleriOSExampleViewController.xib -------------------------------------------------------------------------------- /PDKeychainBindingsControlleriOSExampleTests/PDKeychainBindingsTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControlleriOSExampleTests/PDKeychainBindingsTest.h -------------------------------------------------------------------------------- /PDKeychainBindingsControlleriOSExampleTests/PDKeychainBindingsTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/PDKeychainBindingsControlleriOSExampleTests/PDKeychainBindingsTest.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlbrown/PDKeychainBindingsController/HEAD/README.md --------------------------------------------------------------------------------