libsecret/library/secret-password.h

136 lines
7.4 KiB
C
Raw Permalink Normal View History

/* 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
* 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.
*
* 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)
#error "Only <secret/secret.h> can be included directly."
2012-02-02 12:40:47 +00:00
#endif
#ifndef __SECRET_PASSWORD_H__
#define __SECRET_PASSWORD_H__
2012-01-11 06:44:32 +00:00
#include <gio/gio.h>
G_BEGIN_DECLS
#include "secret-schema.h"
#include "secret-types.h"
2012-01-11 06:44:32 +00:00
void secret_password_store (const SecretSchema *schema,
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
void secret_password_storev (const SecretSchema *schema,
2012-02-02 12:40:47 +00:00
GHashTable *attributes,
const gchar *collection,
2012-02-02 12:40:47 +00:00
const gchar *label,
const gchar *password,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
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
gboolean secret_password_store_sync (const SecretSchema *schema,
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
gboolean secret_password_storev_sync (const SecretSchema *schema,
2012-02-02 12:40:47 +00:00
GHashTable *attributes,
const gchar *collection,
2012-02-02 12:40:47 +00:00
const gchar *label,
const gchar *password,
GCancellable *cancellable,
GError **error);
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
2012-02-02 12:40:47 +00:00
void secret_password_lookupv (const SecretSchema *schema,
GHashTable *attributes,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
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
gchar * secret_password_lookup_nonpageable_finish (GAsyncResult *result,
GError **error);
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
gchar * secret_password_lookup_nonpageable_sync (const SecretSchema *schema,
GCancellable *cancellable,
GError **error,
...);
2012-02-02 12:40:47 +00:00
gchar * secret_password_lookupv_sync (const SecretSchema *schema,
GHashTable *attributes,
GCancellable *cancellable,
GError **error);
2012-01-11 06:44:32 +00:00
gchar * secret_password_lookupv_nonpageable_sync (const SecretSchema *schema,
GHashTable *attributes,
GCancellable *cancellable,
GError **error);
void secret_password_remove (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
2012-02-02 12:40:47 +00:00
void secret_password_removev (const SecretSchema *schema,
GHashTable *attributes,
GCancellable *cancellable,
GAsyncReadyCallback callback,
gpointer user_data);
2012-01-11 06:44:32 +00:00
gboolean secret_password_remove_finish (GAsyncResult *result,
2012-02-02 12:40:47 +00:00
GError **error);
2012-01-11 06:44:32 +00:00
gboolean secret_password_remove_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
2012-02-02 12:40:47 +00:00
gboolean secret_password_removev_sync (const SecretSchema *schema,
GHashTable *attributes,
GCancellable *cancellable,
GError **error);
2012-01-11 06:44:32 +00:00
void secret_password_free (gchar *password);
2012-01-11 06:44:32 +00:00
void secret_password_clear (gchar *password);
2012-01-11 06:44:32 +00:00
G_END_DECLS
2012-02-02 12:40:47 +00:00
#endif /* __SECRET_PASSWORD_H___ */