├── .gitignore ├── .travis.yml ├── KeychainWrapper.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── KeychainWrapper.xcscheme │ └── KeychainWrapperHostApp.xcscheme ├── KeychainWrapper ├── Info.plist ├── KeychainItem.swift ├── KeychainItemAccesssibility.swift ├── KeychainWrapper.h └── KeychainWrapper.swift ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── KeychainWrapper │ ├── KeychainItem.swift │ ├── KeychainItemAccesssibility.swift │ └── KeychainWrapper.swift ├── Tests └── KeychainWrapperTests │ ├── Info.plist │ ├── KeychainItemTests.swift │ └── KeychainWrapperTests.swift ├── banner@2x.jpg ├── codecov.yml └── horn.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/.travis.yml -------------------------------------------------------------------------------- /KeychainWrapper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/KeychainWrapper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /KeychainWrapper.xcodeproj/xcshareddata/xcschemes/KeychainWrapper.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/KeychainWrapper.xcodeproj/xcshareddata/xcschemes/KeychainWrapper.xcscheme -------------------------------------------------------------------------------- /KeychainWrapper.xcodeproj/xcshareddata/xcschemes/KeychainWrapperHostApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/KeychainWrapper.xcodeproj/xcshareddata/xcschemes/KeychainWrapperHostApp.xcscheme -------------------------------------------------------------------------------- /KeychainWrapper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/KeychainWrapper/Info.plist -------------------------------------------------------------------------------- /KeychainWrapper/KeychainItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/KeychainWrapper/KeychainItem.swift -------------------------------------------------------------------------------- /KeychainWrapper/KeychainItemAccesssibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/KeychainWrapper/KeychainItemAccesssibility.swift -------------------------------------------------------------------------------- /KeychainWrapper/KeychainWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/KeychainWrapper/KeychainWrapper.h -------------------------------------------------------------------------------- /KeychainWrapper/KeychainWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/KeychainWrapper/KeychainWrapper.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/README.md -------------------------------------------------------------------------------- /Sources/KeychainWrapper/KeychainItem.swift: -------------------------------------------------------------------------------- 1 | ../../KeychainWrapper/KeychainItem.swift -------------------------------------------------------------------------------- /Sources/KeychainWrapper/KeychainItemAccesssibility.swift: -------------------------------------------------------------------------------- 1 | ../../KeychainWrapper/KeychainItemAccesssibility.swift -------------------------------------------------------------------------------- /Sources/KeychainWrapper/KeychainWrapper.swift: -------------------------------------------------------------------------------- 1 | ../../KeychainWrapper/KeychainWrapper.swift -------------------------------------------------------------------------------- /Tests/KeychainWrapperTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/Tests/KeychainWrapperTests/Info.plist -------------------------------------------------------------------------------- /Tests/KeychainWrapperTests/KeychainItemTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/Tests/KeychainWrapperTests/KeychainItemTests.swift -------------------------------------------------------------------------------- /Tests/KeychainWrapperTests/KeychainWrapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/Tests/KeychainWrapperTests/KeychainWrapperTests.swift -------------------------------------------------------------------------------- /banner@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/banner@2x.jpg -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/codecov.yml -------------------------------------------------------------------------------- /horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/puretears/KeychainWrapper/HEAD/horn.png --------------------------------------------------------------------------------