Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1.17 KB

README.md

File metadata and controls

42 lines (25 loc) · 1.17 KB

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, [email protected]

License

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