Simple iOS keychain wrapper. This wrapper is meant to be used as a dictionary to store strings (passwords, tokens and other sensitive data).
You can read more about this wrapper on my blog: http://agostini.tech/2017/03/06/creating-a-simple-keychain-wrapper/
DAKeychain.shared["key"] = "confidential data" // Store
let value = DAKeychain.shared["key"] // Fetch
To run the example project, clone the repo, and run pod install
from the Example directory first.
DAKeychain is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod "DAKeychain"
Dejan Agostini, dejan.agostini@gmail.com
DAKeychain is available under the MIT license. See the LICENSE file for more info.