We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Under a Plasma desktop (tested with kwallet 5.116.0 on Manjaro), the account name is ignored and instead the service name is used to store password.
kwallet
I am not sure if GNOME also affected by this, I did not test.
ICredentialStore.AddOrUpdate("serviceName", "accountNameA", "Password A");
ICredentialStore.AddOrUpdate("serviceName", "accountNameB", "Password B");
Secret Service
Binary Data
git:serviceName
ICredentialStore.Get("serviceName", "accountNameA");
Password B
Credentials should appear in the Service Name → Account Name structure.
Service Name
Account Name
N/A
devlooped.CredentialManager
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the Bug
Under a Plasma desktop (tested with
kwallet
5.116.0 on Manjaro), the account name is ignored and instead the service name is used to store password.I am not sure if GNOME also affected by this, I did not test.
Steps to Reproduce
ICredentialStore.AddOrUpdate("serviceName", "accountNameA", "Password A");
ICredentialStore.AddOrUpdate("serviceName", "accountNameB", "Password B");
Secret Service
→Binary Data
folder, you'll seegit:serviceName
and "Password B" appears, and "Password A" is nowhere to be found.ICredentialStore.Get("serviceName", "accountNameA");
should now returnPassword B
.Expected Behavior
Credentials should appear in the
Service Name
→Account Name
structure.Exception with Stack Trace
N/A
Version Info
devlooped.CredentialManager
: 2.6.0kwallet
(the Secret Service implementation): 5.116.0Additional Info
N/A
The text was updated successfully, but these errors were encountered: