libsecret/library/gsecret-password.h

110 lines
6.1 KiB
C
Raw Normal View History

2012-01-11 06:44:32 +00:00
/* GSecret - GLib wrapper for Secret Service
*
* 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
* by the Free Software Foundation; either version 2 of the licence or (at
* your option) any later version.
*
* See the included COPYING file for more information.
*/
#ifndef __GSECRET_PASSWORD_H__
#define __GSECRET_PASSWORD_H__
#include <gio/gio.h>
G_BEGIN_DECLS
#include "gsecret-types.h"
void gsecret_password_store (const GSecretSchema *schema,
const gchar *collection_path,
const gchar *label,
const gchar *password,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data,
...) G_GNUC_NULL_TERMINATED;
void gsecret_password_storev (const GSecretSchema *schema,
const gchar *collection_path,
const gchar *label,
const gchar *password,
GHashTable *attributes,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
2012-01-11 06:44:32 +00:00
gboolean gsecret_password_store_finish (GAsyncResult *result,
GError **error);
gboolean gsecret_password_store_sync (const GSecretSchema *schema,
const gchar *collection_path,
const gchar *label,
2012-01-11 06:44:32 +00:00
const gchar *password,
GCancellable *cancellable,
GError **error,
...) G_GNUC_NULL_TERMINATED;
gboolean gsecret_password_storev_sync (const GSecretSchema *schema,
const gchar *collection_path,
const gchar *display_name,
const gchar *password,
GHashTable *attributes,
GCancellable *cancellable,
GError **error);
2012-01-11 06:44:32 +00:00
void gsecret_password_lookup (const GSecretSchema *schema,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data,
...) G_GNUC_NULL_TERMINATED;
void gsecret_password_lookupv (GHashTable *attributes,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
2012-01-11 06:44:32 +00:00
gchar * gsecret_password_lookup_finish (GAsyncResult *result,
GError **error);
gchar * gsecret_password_lookup_sync (const GSecretSchema *schema,
GCancellable *cancellable,
GError **error,
...) G_GNUC_NULL_TERMINATED;
gchar * gsecret_password_lookupv_sync (GHashTable *attributes,
GCancellable *cancellable,
GError **error);
2012-01-11 06:44:32 +00:00
void gsecret_password_remove (const GSecretSchema *schema,
2012-01-11 06:44:32 +00:00
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data,
...) G_GNUC_NULL_TERMINATED;
void gsecret_password_removev (GHashTable *attributes,
2012-01-11 06:44:32 +00:00
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
gboolean gsecret_password_remove_finish (GAsyncResult *result,
2012-01-11 06:44:32 +00:00
GError **error);
gboolean gsecret_password_remove_sync (const GSecretSchema* schema,
2012-01-11 06:44:32 +00:00
GCancellable *cancellable,
GError **error,
...) G_GNUC_NULL_TERMINATED;
gboolean gsecret_password_removev_sync (GHashTable *attributes,
2012-01-11 06:44:32 +00:00
GCancellable *cancellable,
GError **error);
void gsecret_password_free (gpointer password);
G_END_DECLS
#endif /* __G_SERVICE_H___ */