2012-02-01 12:34:08 +00:00
|
|
|
/* libsecret - GLib wrapper for Secret Service
|
2012-01-11 06:44:32 +00:00
|
|
|
*
|
|
|
|
* Copyright 2011 Collabora Ltd.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published
|
2012-03-31 13:32:43 +00:00
|
|
|
* by the Free Software Foundation; either version 2.1 of the licence or (at
|
2012-01-11 06:44:32 +00:00
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* See the included COPYING file for more information.
|
2012-03-31 13:32:43 +00:00
|
|
|
*
|
|
|
|
* Author: Stef Walter <stefw@gnome.org>
|
2012-01-11 06:44:32 +00:00
|
|
|
*/
|
|
|
|
|
2012-02-02 12:40:47 +00:00
|
|
|
#if !defined (__SECRET_INSIDE_HEADER__) && !defined (SECRET_COMPILATION)
|
2012-07-13 09:11:58 +00:00
|
|
|
#error "Only <libsecret/secret.h> can be included directly."
|
2012-02-02 12:40:47 +00:00
|
|
|
#endif
|
|
|
|
|
2012-02-01 12:34:08 +00:00
|
|
|
#ifndef __SECRET_PASSWORD_H__
|
|
|
|
#define __SECRET_PASSWORD_H__
|
2012-01-11 06:44:32 +00:00
|
|
|
|
|
|
|
#include <gio/gio.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2012-03-11 08:06:40 +00:00
|
|
|
#include "secret-schema.h"
|
2012-02-01 12:34:08 +00:00
|
|
|
#include "secret-types.h"
|
2019-06-20 04:55:37 +00:00
|
|
|
#include "secret-value.h"
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
void secret_password_store (const SecretSchema *schema,
|
2012-07-06 07:42:08 +00:00
|
|
|
const gchar *collection,
|
2012-02-02 12:40:47 +00:00
|
|
|
const gchar *label,
|
|
|
|
const gchar *password,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
void secret_password_storev (const SecretSchema *schema,
|
2012-02-02 12:40:47 +00:00
|
|
|
GHashTable *attributes,
|
2012-07-06 07:42:08 +00:00
|
|
|
const gchar *collection,
|
2012-02-02 12:40:47 +00:00
|
|
|
const gchar *label,
|
|
|
|
const gchar *password,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
2012-01-16 14:08:29 +00:00
|
|
|
|
2019-06-21 04:54:51 +00:00
|
|
|
void secret_password_store_binary (const SecretSchema *schema,
|
2021-02-06 10:44:49 +00:00
|
|
|
const char *collection,
|
|
|
|
const char *label,
|
|
|
|
SecretValue *value,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2019-06-21 04:54:51 +00:00
|
|
|
|
|
|
|
void secret_password_storev_binary (const SecretSchema *schema,
|
|
|
|
GHashTable *attributes,
|
|
|
|
const gchar *collection,
|
|
|
|
const gchar *label,
|
|
|
|
SecretValue *value,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
gboolean secret_password_store_finish (GAsyncResult *result,
|
2012-02-02 12:40:47 +00:00
|
|
|
GError **error);
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
gboolean secret_password_store_sync (const SecretSchema *schema,
|
2012-07-06 07:42:08 +00:00
|
|
|
const gchar *collection,
|
2012-02-02 12:40:47 +00:00
|
|
|
const gchar *label,
|
|
|
|
const gchar *password,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
gboolean secret_password_storev_sync (const SecretSchema *schema,
|
2012-02-02 12:40:47 +00:00
|
|
|
GHashTable *attributes,
|
2012-07-06 07:42:08 +00:00
|
|
|
const gchar *collection,
|
2012-02-02 12:40:47 +00:00
|
|
|
const gchar *label,
|
|
|
|
const gchar *password,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
2012-01-16 14:08:29 +00:00
|
|
|
|
2019-06-21 04:54:51 +00:00
|
|
|
gboolean secret_password_store_binary_sync (const SecretSchema *schema,
|
2021-02-06 10:44:49 +00:00
|
|
|
const char *collection,
|
|
|
|
const char *label,
|
|
|
|
SecretValue *value,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2019-06-21 04:54:51 +00:00
|
|
|
|
|
|
|
gboolean secret_password_storev_binary_sync (const SecretSchema *schema,
|
|
|
|
GHashTable *attributes,
|
|
|
|
const gchar *collection,
|
|
|
|
const gchar *label,
|
|
|
|
SecretValue *value,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
void secret_password_lookup (const SecretSchema *schema,
|
2012-02-02 12:40:47 +00:00
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
void secret_password_lookupv (const SecretSchema *schema,
|
2012-02-02 12:40:47 +00:00
|
|
|
GHashTable *attributes,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
2012-01-16 14:08:29 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
gchar * secret_password_lookup_finish (GAsyncResult *result,
|
2012-02-02 12:40:47 +00:00
|
|
|
GError **error);
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
gchar * secret_password_lookup_nonpageable_finish (GAsyncResult *result,
|
|
|
|
GError **error);
|
|
|
|
SecretValue *secret_password_lookup_binary_finish (GAsyncResult *result,
|
|
|
|
GError **error);
|
2012-03-11 08:06:40 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
gchar * secret_password_lookup_sync (const SecretSchema *schema,
|
2012-02-02 12:40:47 +00:00
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
gchar * secret_password_lookup_nonpageable_sync (const SecretSchema *schema,
|
2012-03-11 08:06:40 +00:00
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error,
|
2021-02-06 10:44:49 +00:00
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2019-06-20 04:55:37 +00:00
|
|
|
SecretValue *secret_password_lookup_binary_sync (const SecretSchema *schema,
|
2021-02-06 10:44:49 +00:00
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2012-03-11 08:06:40 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
gchar * secret_password_lookupv_sync (const SecretSchema *schema,
|
2012-02-02 12:40:47 +00:00
|
|
|
GHashTable *attributes,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
gchar * secret_password_lookupv_nonpageable_sync (const SecretSchema *schema,
|
2012-03-11 08:06:40 +00:00
|
|
|
GHashTable *attributes,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
2019-06-20 04:55:37 +00:00
|
|
|
SecretValue *secret_password_lookupv_binary_sync (const SecretSchema *schema,
|
|
|
|
GHashTable *attributes,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
2012-03-11 08:06:40 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
void secret_password_clear (const SecretSchema *schema,
|
2012-02-02 12:40:47 +00:00
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
void secret_password_clearv (const SecretSchema *schema,
|
2012-02-02 12:40:47 +00:00
|
|
|
GHashTable *attributes,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
gboolean secret_password_clear_finish (GAsyncResult *result,
|
2012-02-02 12:40:47 +00:00
|
|
|
GError **error);
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
gboolean secret_password_clear_sync (const SecretSchema* schema,
|
2012-02-02 12:40:47 +00:00
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
gboolean secret_password_clearv_sync (const SecretSchema *schema,
|
2012-02-02 12:40:47 +00:00
|
|
|
GHashTable *attributes,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
void secret_password_search (const SecretSchema *schema,
|
2019-06-17 13:30:00 +00:00
|
|
|
SecretSearchFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
void secret_password_searchv (const SecretSchema *schema,
|
2019-06-17 13:30:00 +00:00
|
|
|
GHashTable *attributes,
|
|
|
|
SecretSearchFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data);
|
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
GList * secret_password_search_sync (const SecretSchema *schema,
|
2019-06-17 13:30:00 +00:00
|
|
|
SecretSearchFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error,
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
GList * secret_password_searchv_sync (const SecretSchema *schema,
|
2019-06-17 13:30:00 +00:00
|
|
|
GHashTable *attributes,
|
|
|
|
SecretSearchFlags flags,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GError **error);
|
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
GList * secret_password_search_finish (GAsyncResult *result,
|
2019-06-17 13:30:00 +00:00
|
|
|
GError **error);
|
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
void secret_password_free (gchar *password);
|
2012-01-11 06:44:32 +00:00
|
|
|
|
2019-06-20 04:55:37 +00:00
|
|
|
void secret_password_wipe (gchar *password);
|
2012-03-25 10:18:24 +00:00
|
|
|
|
2012-01-11 06:44:32 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2012-02-02 12:40:47 +00:00
|
|
|
#endif /* __SECRET_PASSWORD_H___ */
|