KeychainStore 3.1.0

KeychainStore 3.1.0

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Apr 2020
SPMSupports SPM

Maintained by Juanjo Arreola.



  • By
  • Juanjo Arreola

KeychainStore

Swift 5 Framework to access the Keychain

Cocoapods Platform License codebeat badge

Swift version Latest version
4.1 3.0.4
5.0 3.1.0

Usage

KeychainStore<T: Codable> is a generic class that stores instances of classes that conform to the Codable protocol

let store = KeychainStore<Card>(account: "test")
let card = Card(number: "4111111111111111", name: "Me")

// save card:
try store.set(object: card, forKey: "my card")
// 	or:
try store.set(object: card, forKey: "my card", accessibility: .whenPasscodeSetThisDeviceOnly)

// get card
let card = try store.object(forKey: "my card")

Additionally, the class KeychainStringStore saves String instances in the Keychain.