├── .gitignore ├── .travis.yml ├── Examples └── Example-iOS │ ├── Example-iOS.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── Example-iOS.xcscheme │ └── Example-iOS │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Example-iOS.entitlements │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Info.plist │ ├── LaunchScreen.storyboard │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── LICENSE ├── Lib ├── Certificates │ ├── KeychainAccess_Tests.provisionprofile.enc │ ├── apple.cer │ ├── developer_id_app.p12.enc │ ├── iOS_Development.mobileprovision.enc │ ├── ios_developer.p12.enc │ └── tvOS_Development.mobileprovision.enc ├── Configurations │ ├── Base.xcconfig │ ├── Debug.xcconfig │ ├── Release.xcconfig │ ├── TestHost.xcconfig │ ├── Tests.xcconfig │ ├── UICKeyChainStore.xcconfig │ └── libUICKeyChainStore.xcconfig ├── Gemfile ├── Gemfile.lock ├── Rakefile ├── Scripts │ ├── add_key.sh │ └── decode_cert.sh ├── TestHost │ ├── Info.plist │ ├── TestHost.entitlements │ └── main.m ├── UICKeyChainStore.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── TestHost.xcscheme │ │ ├── UICKeyChainStore.xcscheme │ │ └── libUICKeyChainStore.xcscheme ├── UICKeyChainStore │ ├── Info.plist │ ├── UICKeyChainStore.h │ └── UICKeyChainStore.m └── UICKeyChainStoreTests │ ├── Info.plist │ ├── UICKeyChainStoreForwardCompatibilityTests.m │ ├── UICKeyChainStoreTests.m │ └── v1.1.1-Lib │ ├── UICv1KeyChainStore.h │ └── UICv1KeyChainStore.m ├── Package.swift ├── README.md ├── UICKeyChainStore.podspec └── UICKeyChainStore.xcworkspace ├── contents.xcworkspacedata └── xcshareddata ├── IDEWorkspaceChecks.plist └── UICKeyChainStore.xccheckout /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/.travis.yml -------------------------------------------------------------------------------- /Examples/Example-iOS/Example-iOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Examples/Example-iOS/Example-iOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/Example-iOS/Example-iOS.xcodeproj/xcshareddata/xcschemes/Example-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Examples/Example-iOS/Example-iOS.xcodeproj/xcshareddata/xcschemes/Example-iOS.xcscheme -------------------------------------------------------------------------------- /Examples/Example-iOS/Example-iOS/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Examples/Example-iOS/Example-iOS/AppDelegate.h -------------------------------------------------------------------------------- /Examples/Example-iOS/Example-iOS/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Examples/Example-iOS/Example-iOS/AppDelegate.m -------------------------------------------------------------------------------- /Examples/Example-iOS/Example-iOS/Example-iOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Examples/Example-iOS/Example-iOS/Example-iOS.entitlements -------------------------------------------------------------------------------- /Examples/Example-iOS/Example-iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Examples/Example-iOS/Example-iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/Example-iOS/Example-iOS/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Examples/Example-iOS/Example-iOS/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/Example-iOS/Example-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Examples/Example-iOS/Example-iOS/Info.plist -------------------------------------------------------------------------------- /Examples/Example-iOS/Example-iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Examples/Example-iOS/Example-iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Examples/Example-iOS/Example-iOS/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Examples/Example-iOS/Example-iOS/ViewController.h -------------------------------------------------------------------------------- /Examples/Example-iOS/Example-iOS/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Examples/Example-iOS/Example-iOS/ViewController.m -------------------------------------------------------------------------------- /Examples/Example-iOS/Example-iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Examples/Example-iOS/Example-iOS/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/Certificates/KeychainAccess_Tests.provisionprofile.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Certificates/KeychainAccess_Tests.provisionprofile.enc -------------------------------------------------------------------------------- /Lib/Certificates/apple.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Certificates/apple.cer -------------------------------------------------------------------------------- /Lib/Certificates/developer_id_app.p12.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Certificates/developer_id_app.p12.enc -------------------------------------------------------------------------------- /Lib/Certificates/iOS_Development.mobileprovision.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Certificates/iOS_Development.mobileprovision.enc -------------------------------------------------------------------------------- /Lib/Certificates/ios_developer.p12.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Certificates/ios_developer.p12.enc -------------------------------------------------------------------------------- /Lib/Certificates/tvOS_Development.mobileprovision.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Certificates/tvOS_Development.mobileprovision.enc -------------------------------------------------------------------------------- /Lib/Configurations/Base.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Configurations/Base.xcconfig -------------------------------------------------------------------------------- /Lib/Configurations/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Configurations/Debug.xcconfig -------------------------------------------------------------------------------- /Lib/Configurations/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Configurations/Release.xcconfig -------------------------------------------------------------------------------- /Lib/Configurations/TestHost.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Configurations/TestHost.xcconfig -------------------------------------------------------------------------------- /Lib/Configurations/Tests.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Configurations/Tests.xcconfig -------------------------------------------------------------------------------- /Lib/Configurations/UICKeyChainStore.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Configurations/UICKeyChainStore.xcconfig -------------------------------------------------------------------------------- /Lib/Configurations/libUICKeyChainStore.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Configurations/libUICKeyChainStore.xcconfig -------------------------------------------------------------------------------- /Lib/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Gemfile -------------------------------------------------------------------------------- /Lib/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Gemfile.lock -------------------------------------------------------------------------------- /Lib/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Rakefile -------------------------------------------------------------------------------- /Lib/Scripts/add_key.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Scripts/add_key.sh -------------------------------------------------------------------------------- /Lib/Scripts/decode_cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/Scripts/decode_cert.sh -------------------------------------------------------------------------------- /Lib/TestHost/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/TestHost/Info.plist -------------------------------------------------------------------------------- /Lib/TestHost/TestHost.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/TestHost/TestHost.entitlements -------------------------------------------------------------------------------- /Lib/TestHost/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/TestHost/main.m -------------------------------------------------------------------------------- /Lib/UICKeyChainStore.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/UICKeyChainStore.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Lib/UICKeyChainStore.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/UICKeyChainStore.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Lib/UICKeyChainStore.xcodeproj/xcshareddata/xcschemes/TestHost.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/UICKeyChainStore.xcodeproj/xcshareddata/xcschemes/TestHost.xcscheme -------------------------------------------------------------------------------- /Lib/UICKeyChainStore.xcodeproj/xcshareddata/xcschemes/UICKeyChainStore.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/UICKeyChainStore.xcodeproj/xcshareddata/xcschemes/UICKeyChainStore.xcscheme -------------------------------------------------------------------------------- /Lib/UICKeyChainStore.xcodeproj/xcshareddata/xcschemes/libUICKeyChainStore.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/UICKeyChainStore.xcodeproj/xcshareddata/xcschemes/libUICKeyChainStore.xcscheme -------------------------------------------------------------------------------- /Lib/UICKeyChainStore/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/UICKeyChainStore/Info.plist -------------------------------------------------------------------------------- /Lib/UICKeyChainStore/UICKeyChainStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/UICKeyChainStore/UICKeyChainStore.h -------------------------------------------------------------------------------- /Lib/UICKeyChainStore/UICKeyChainStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/UICKeyChainStore/UICKeyChainStore.m -------------------------------------------------------------------------------- /Lib/UICKeyChainStoreTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/UICKeyChainStoreTests/Info.plist -------------------------------------------------------------------------------- /Lib/UICKeyChainStoreTests/UICKeyChainStoreForwardCompatibilityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/UICKeyChainStoreTests/UICKeyChainStoreForwardCompatibilityTests.m -------------------------------------------------------------------------------- /Lib/UICKeyChainStoreTests/UICKeyChainStoreTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/UICKeyChainStoreTests/UICKeyChainStoreTests.m -------------------------------------------------------------------------------- /Lib/UICKeyChainStoreTests/v1.1.1-Lib/UICv1KeyChainStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/UICKeyChainStoreTests/v1.1.1-Lib/UICv1KeyChainStore.h -------------------------------------------------------------------------------- /Lib/UICKeyChainStoreTests/v1.1.1-Lib/UICv1KeyChainStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Lib/UICKeyChainStoreTests/v1.1.1-Lib/UICv1KeyChainStore.m -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/README.md -------------------------------------------------------------------------------- /UICKeyChainStore.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/UICKeyChainStore.podspec -------------------------------------------------------------------------------- /UICKeyChainStore.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/UICKeyChainStore.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UICKeyChainStore.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/UICKeyChainStore.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /UICKeyChainStore.xcworkspace/xcshareddata/UICKeyChainStore.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kishikawakatsumi/UICKeyChainStore/HEAD/UICKeyChainStore.xcworkspace/xcshareddata/UICKeyChainStore.xccheckout --------------------------------------------------------------------------------