Created
September 28, 2017 10:28
-
-
Save piotrbernad/94ff577f38de065aebe158f1ebe7f44d to your computer and use it in GitHub Desktop.
KeychainAccess.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public protocol KeychainAccess { | |
| func remove(_ key: String) throws | |
| func set(_ value: Data, key: String) throws | |
| func get(_ key: String) throws -> Data? | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment