mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-06-14 18:50:19 +00:00
11 lines
399 B
C
11 lines
399 B
C
#ifndef ZOITECHAT_SECRETSTORE_H
|
|
#define ZOITECHAT_SECRETSTORE_H
|
|
|
|
char *secretstore_get_network_password (const char *network_name);
|
|
int secretstore_set_network_password (const char *network_name, const char *password);
|
|
int secretstore_delete_network_password (const char *network_name);
|
|
int secretstore_is_keyring_available (void);
|
|
int secretstore_require_unlock (const char *network_name);
|
|
|
|
#endif
|