DAKeychain

DAKeychain is a simple keychain wrapper that acts like a dictionary.


License
MIT
Install
pod try DAKeychain

Documentation

DAKeychain

Version License Platform

Description

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/

Usage

DAKeychain.shared["key"] = "confidential data" // Store

let value = DAKeychain.shared["key"] // Fetch

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Installation

DAKeychain is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "DAKeychain"

Author

Dejan Agostini, dejan.agostini@gmail.com

License

DAKeychain is available under the MIT license. See the LICENSE file for more info.