Is there any built-in safe storage api for securely storing secrets? #7846
Replies: 3 comments 9 replies
-
|
stronghold is no longer recommended and will be deprecated and therefore removed in v3. |
Beta Was this translation helpful? Give feedback.
-
|
Any update on the keyring? |
Beta Was this translation helpful? Give feedback.
-
|
I ran into a similar challenge while building a Rust + Tauri desktop AI app that stores encrypted session data locally. One thing I’ve been exploring is a hybrid model:
The tricky part seems less about storage itself and more about cross-platform consistency and developer ergonomics. Curious whether the Tauri core team sees this as something that should live in official plugins long-term, or if the ecosystem model (community plugins like keyring) is the intended direction? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Electron has a safe storage API for "protecting data stored on disk from being accessed by other applications or users with full disk access".
I need to store a encryption key used to encrypt data on disk. Is there a Tauri or Rust way of doing this on all platforms?
Mac has a security-framework for keychain.
It would be nice if we can have a similar cross-platform plugin for tauri.
Beta Was this translation helpful? Give feedback.
All reactions