Latch alternatives and similar libraries
Based on the "Keychain" category.
Alternatively, view Latch alternatives based on common mentions on social networks and blogs.
-
KeychainAccess
Simple Swift wrapper for Keychain that works on iOS and OS X. -
Valet
Valet lets you securely store data in the iOS or OS X Keychain without knowing a thing about how the Keychain works. It’s easy. We promise. -
Locksmith
A powerful, protocol-oriented library for working with the iOS Keychain in Swift. -
keychain-swift
Helper functions for saving text in Keychain securely for iOS, OS X, tvOS and watchOS. -
SwiftKeychainWrapper
a simple static wrapper for the iOS Keychain to allow you to use it in a similar fashion to user defaults. -
SAMKeychain
Simple Objective-C wrapper for the keychain that works on Mac and iOS
Scout APM - Leading-edge performance monitoring starting at $39/month
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of Latch or a related project?
README
Latch
A simple Swift 2.0 Keychain Wrapper for iOS, watchOS 2, and OS X.
Usage
A proper example of how to use Latch can be seen in the tests.
import Latch
let latch = Latch(service: "co.rocketapps.latch.example")
latch.setObject("super_secret_token", forKey: "FBAccessToken")
let token = latch.stringForKey("FBAccessToken")
print(token)
Documentation
You can find full documentation for Latch here, or use the inline documentation.
Installation
Latch can be installed using CocoaPods, Carthage, or git submodules.
CocoaPods
- Add
pod "Latch"
to your podfile - Run
pod install
Carthage
- Add
github "DanToml/Latch"
to your Cartfile $ carthage update
- Copy the frameworks into your Xcode project
Git Submodules
$ git submodule add https://github.com/DanToml/Latch.git
$ git submodule update --init --recursive
- Add the project
Contributing
Issues
Issues and feature requests are welcome, although the intention is to keep Latch lightweight.
Submitting Pull Requests
- Fork it ( http://github.com/DanToml/Latch/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request