2 stable releases
2.0.2 | Nov 20, 2024 |
---|---|
2.0.1 | Nov 18, 2024 |
#329 in Authentication
39 downloads per month
22KB
528 lines
Tauri keychain plugin
This plugin is used to hold keys or password, and even after uninstalling and reinstalling your app, they still exist
- ios: impl of Keychain services and your need xcode add Signing & Capabilities - Keychain Sharing
- android: impl of AccountManager
get keychain
import { getItem } from 'tauri-plugin-keychain'
getItem(key)
- or
import { invoke } from '@tauri-apps/api/core'
invoke('plugin:keychain|get_item', {
key
})
save keychain
import { saveItem } from 'tauri-plugin-keychain'
saveItem(key, password)
- or
import { invoke } from '@tauri-apps/api/core'
invoke('plugin:keychain|save_item', {
key,
password
})
remove keychain
import { removeItem } from 'tauri-plugin-keychain'
removeItem(key)
- or
import { invoke } from '@tauri-apps/api/core'
invoke('plugin:keychain|remove_item', {
key
})
Dependencies
~17–58MB
~862K SLoC