andrewebling / PAKeychainService

A very simple Swift wrapper around the iOS Keychain

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PAKeychainService

A very simple Swift wrapper around the iOS Keychain.

Usage

Retrieve

if let emailValue = PAKeychainService.sharedService.getContentsOfKey("email") {
    ...
}

Update / Save

PAKeychainService.sharedService.saveContentsForKey("new value", key: "email")

About

A very simple Swift wrapper around the iOS Keychain

License:MIT License


Languages

Language:Swift 57.9%Language:Objective-C 42.1%