Top | ![]() |
![]() |
![]() |
![]() |
void | gnome_keyring_info_free () |
GnomeKeyringInfo * | gnome_keyring_info_copy () |
void | gnome_keyring_info_set_lock_on_idle () |
gboolean | gnome_keyring_info_get_lock_on_idle () |
void | gnome_keyring_info_set_lock_timeout () |
guint32 | gnome_keyring_info_get_lock_timeout () |
time_t | gnome_keyring_info_get_mtime () |
time_t | gnome_keyring_info_get_ctime () |
gboolean | gnome_keyring_info_get_is_locked () |
Use gnome_keyring_get_info()
or gnome_keyring_get_info_sync()
to get a GnomeKeyringInfo
pointer to use with these functions.
void
gnome_keyring_info_free (GnomeKeyringInfo *keyring_info
);
Free a GnomeKeyringInfo object. If a NULL
pointer is passed
nothing occurs.
GnomeKeyringInfo *
gnome_keyring_info_copy (GnomeKeyringInfo *keyring_info
);
Copy a GnomeKeyringInfo object.
void gnome_keyring_info_set_lock_on_idle (GnomeKeyringInfo *keyring_info
,gboolean value
);
Set whether or not to lock a keyring after a certain amount of idle time.
See also gnome_keyring_info_set_lock_timeout()
.
gboolean
gnome_keyring_info_get_lock_on_idle (GnomeKeyringInfo *keyring_info
);
Get whether or not to lock a keyring after a certain amount of idle time.
See also gnome_keyring_info_get_lock_timeout()
.
void gnome_keyring_info_set_lock_timeout (GnomeKeyringInfo *keyring_info
,guint32 value
);
Set the idle timeout, in seconds, after which to lock the keyring.
See also gnome_keyring_info_set_lock_on_idle()
.
guint32
gnome_keyring_info_get_lock_timeout (GnomeKeyringInfo *keyring_info
);
Get the idle timeout, in seconds, after which to lock the keyring.
See also gnome_keyring_info_get_lock_on_idle()
.
time_t
gnome_keyring_info_get_mtime (GnomeKeyringInfo *keyring_info
);
Get the time at which the keyring was last modified.
time_t
gnome_keyring_info_get_ctime (GnomeKeyringInfo *keyring_info
);
Get the time at which the keyring was created.
gboolean
gnome_keyring_info_get_is_locked (GnomeKeyringInfo *keyring_info
);
Get whether the keyring is locked or not.