├── .gitignore ├── .travis.yml ├── Debug.entitlements ├── LICENSE ├── Package.swift ├── README.md ├── SwiftKeychainWrapper.podspec ├── SwiftKeychainWrapper.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ └── SwiftKeychainWrapper.xcscheme ├── SwiftKeychainWrapper ├── Info.plist ├── KeychainItemAccessibility.swift ├── KeychainWrapper.swift ├── KeychainWrapperSubscript.swift └── SwiftKeychainWrapper.h ├── SwiftKeychainWrapperTests ├── Info.plist ├── KeychainWrapperDefaultWrapperTests.swift ├── KeychainWrapperDeleteTests.swift ├── KeychainWrapperPrimitiveValueTests.swift ├── KeychainWrapperTests.swift └── TestObject.swift └── TestHostApp ├── AppDelegate.swift ├── Assets.xcassets └── AppIcon.appiconset │ └── Contents.json ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── Debug.entitlements ├── Info.plist └── ViewController.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/.travis.yml -------------------------------------------------------------------------------- /Debug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/Debug.entitlements -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/README.md -------------------------------------------------------------------------------- /SwiftKeychainWrapper.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapper.podspec -------------------------------------------------------------------------------- /SwiftKeychainWrapper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SwiftKeychainWrapper.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapper.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SwiftKeychainWrapper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SwiftKeychainWrapper.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapper.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /SwiftKeychainWrapper.xcodeproj/xcshareddata/xcschemes/SwiftKeychainWrapper.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapper.xcodeproj/xcshareddata/xcschemes/SwiftKeychainWrapper.xcscheme -------------------------------------------------------------------------------- /SwiftKeychainWrapper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapper/Info.plist -------------------------------------------------------------------------------- /SwiftKeychainWrapper/KeychainItemAccessibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapper/KeychainItemAccessibility.swift -------------------------------------------------------------------------------- /SwiftKeychainWrapper/KeychainWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapper/KeychainWrapper.swift -------------------------------------------------------------------------------- /SwiftKeychainWrapper/KeychainWrapperSubscript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapper/KeychainWrapperSubscript.swift -------------------------------------------------------------------------------- /SwiftKeychainWrapper/SwiftKeychainWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapper/SwiftKeychainWrapper.h -------------------------------------------------------------------------------- /SwiftKeychainWrapperTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapperTests/Info.plist -------------------------------------------------------------------------------- /SwiftKeychainWrapperTests/KeychainWrapperDefaultWrapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapperTests/KeychainWrapperDefaultWrapperTests.swift -------------------------------------------------------------------------------- /SwiftKeychainWrapperTests/KeychainWrapperDeleteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapperTests/KeychainWrapperDeleteTests.swift -------------------------------------------------------------------------------- /SwiftKeychainWrapperTests/KeychainWrapperPrimitiveValueTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapperTests/KeychainWrapperPrimitiveValueTests.swift -------------------------------------------------------------------------------- /SwiftKeychainWrapperTests/KeychainWrapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapperTests/KeychainWrapperTests.swift -------------------------------------------------------------------------------- /SwiftKeychainWrapperTests/TestObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/SwiftKeychainWrapperTests/TestObject.swift -------------------------------------------------------------------------------- /TestHostApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/TestHostApp/AppDelegate.swift -------------------------------------------------------------------------------- /TestHostApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/TestHostApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TestHostApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/TestHostApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TestHostApp/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/TestHostApp/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TestHostApp/Debug.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/TestHostApp/Debug.entitlements -------------------------------------------------------------------------------- /TestHostApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/TestHostApp/Info.plist -------------------------------------------------------------------------------- /TestHostApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jrendel/SwiftKeychainWrapper/HEAD/TestHostApp/ViewController.swift --------------------------------------------------------------------------------