You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation states that the app supports "Linux: Secret Service (via libsecret - GNOME Keyring, KWallet)", I also see there's test infrastructure for gnome-keyring-daemon, however I'm pretty sure it doesn't work. The keyringdependency only enables linux-native, which uses keyutils, which in turn provides "a high-level API for interacting with the Linux keys subsystem" - this is the in-memory kernel key infrastructure, which is not related to user space keyring daemons, such as gnome-keyring-daemon.
it disappears after reboot, there's no secrets visible using seahorse.
I'm not sure if using the kernel keyring is ever a viable option, as by default it's non-persistent. I suppose the correct thing to do would be to replace linux-native with sync-secret-service, which then goes through the DBus interface. I tried it, the project compiled without any other changes and worked as expected.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
The documentation states that the app supports "Linux: Secret Service (via libsecret - GNOME Keyring, KWallet)", I also see there's test infrastructure for
gnome-keyring-daemon, however I'm pretty sure it doesn't work. Thekeyringdependency only enableslinux-native, which uses keyutils, which in turn provides "a high-level API for interacting with the Linux keys subsystem" - this is the in-memory kernel key infrastructure, which is not related to user space keyring daemons, such asgnome-keyring-daemon.I verified this by following the Quick Start example:
it disappears after reboot, there's no secrets visible using
seahorse.I'm not sure if using the kernel keyring is ever a viable option, as by default it's non-persistent. I suppose the correct thing to do would be to replace
linux-nativewithsync-secret-service, which then goes through the DBus interface. I tried it, the project compiled without any other changes and worked as expected.All reactions