1
0
mirror of https://github.com/docker/docker-credential-helpers.git synced 2026-06-14 00:11:28 +05:30

secretservice: add D-Bus secret service

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca
2016-03-02 16:38:17 +01:00
parent 900f815cd4
commit a96948acb3
10 changed files with 295 additions and 13 deletions
+11
View File
@@ -0,0 +1,11 @@
#define SECRET_WITH_UNSTABLE 1
#define SECRET_API_SUBJECT_TO_CHANGE 1
#include <libsecret/secret.h>
const SecretSchema *docker_get_schema(void) G_GNUC_CONST;
#define DOCKER_SCHEMA docker_get_schema()
GError *add(char *server, char *username, char *password);
GError *delete(char *server);
GError *get(char *server, char **username, char **password);