Coder Social home page Coder Social logo

keychain.swift's Introduction

Simple-KeychainSwift

Version License Platform

Supporting Reachability.swift

Keeping Simple-KeychainSwift up-to-date is a time consuming task. Making updates, reviewing pull requests, responding to issues and answering emails all take time. If you'd like to help keep me motivated, please download my free app, Photo Flipper from the App Store. (To really motivate me, pay $1.99 for the IAP ๐Ÿ˜€)

And don't forget to โ˜… the repo. This increases its visibility and encourages others to contribute.

Thanks Ash

Example

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

Installation

Manual

Just drop the Keychain.swift file into your project. That's it!

Swift Package Manager

Simple-KeychainSwift is available through Swift Package Manager. Xcode 11.0+ is required. To install, open Xcode -> File -> Swift Packages -> Add Package Dependency and paste repo's address

https://github.com/ashleymills/Keychain.swift

CocoaPods

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

pod "Simple-KeychainSwift"

Author

Simple-KeychainSwift was wrtten by Ashley Mills, [email protected]

License

Simple-KeychainSwift is available under the MIT license. See the LICENSE file for more info.

Example usage

Simple-KeychainSwift declares a protocol TypeSafeKeychainValue:

public protocol TypeSafeKeychainValue {
    func data() -> Data?                   // Convert to Data
    static func value(data: Data) -> Self? // Convert from Data
}

You can use Simple-KeychainSwift to set any types that conform to this protocol. Currently supported are String, Int, Bool and Date, To set other types, add conformity to TypeSafeKeychainValue, e.g.

extension Int: TypeSafeKeychainValue {
    public func data() -> Data? {
        var value = self
        return Data(bytes: &value, count: MemoryLayout.size(ofValue: value))
    }
    public static func value(data: Data) -> Int? {
        return data.withUnsafeBytes { $0.pointee }
    }
}

Set a key/value pair

Keychain.set("some value", forKey: "some string")
Keychain.set(true, forKey: "some bool")
Keychain.set(Date(), forKey: "some date")
Keychain.set(27, forKey: "some int")

Retrieve the value for a key

Keychain.value(forKey: "some string") as String
Keychain.value(forKey: "some bool") as Bool
Keychain.value(forKey: "some date") as Date
Keychain.value(forKey: "some int") as Int

Delete a key/value pair

Keychain.removeValue(forKey: "my key")

Delete all values from the keychain

Keychain.reset()

Want to help?

Got a bug fix, or a new feature? Create a pull request and go for it!

Let me know!

If you use Simple-KeychainSwift, please let me know.

Cheers, Ash

keychain.swift's People

Contributors

ashleymills avatar wiencheck avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.