Reputation: 13733
I would like to store token and other user information securely on the device. From my understanding just using the regular preferences is not secure, and on iOS such data should be stored in KeyChain (android should still save in SharedPrefrences).
Does Titanium have an API for storing information in iOS Keychain?
I also found OSS module on Marketplace that does that: https://marketplace.appcelerator.com/apps/4112?restoreSearch=true#!overview
But if there's native platform support I rather use it.
Upvotes: 0
Views: 195
Reputation: 1154
There is no API with Titanium
to store data in Keychain, but you can use this module : https://github.com/pegli/ti_keychain/tree/master/mobile
Upvotes: 2