manpagez: man pages & more
html files: libsecret-1
Home | html | info | man

Vala example: Remove a password

Here's how to remove a password from the running secret service, like gnome-keyring or ksecretservice.

Each stored password has a set of attributes which are used to find which password to remove. If multiple passwords match the attributes, then the one stored most recently is removed.

These examples use the example schema.

This first example removes a password asynchronously, and is appropriate for GUI applications so that the UI does not block.

1
2
3
4
5
6
7
8
var attributes = new GLib.HashTable<string,string> ();
attributes["number"] = "8";
attributes["string"] = "eight";
attributes["even"] = "true";

Secret.password_clearv.begin (example_schema, attributes, null, (obj, async_res) => {
    bool removed = Secret.password_clearv.end (async_res);
});

This next example removes a password synchronously. The function call will block until the removal completes. So this is appropriate for non GUI applications.

1
2
3
4
5
6
7
8
var attributes = new GLib.HashTable<string,string> ();
attributes["number"] = "8";
attributes["string"] = "eight";
attributes["even"] = "true";

bool removed = Secret.password_clear_sync (example_schema, null,
                                           "number", 8, "string", "eight", "even", true);
/* removed will be true if the password was removed */
© manpagez.com 2000-2024
Individual documents may contain additional copyright information.