~ubuntu-branches/ubuntu/maverick/gnome-keyring/maverick

« back to all changes in this revision

Viewing changes to pkcs11/secret-store/gck-secret-data.h

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2010-09-01 12:54:04 UTC
  • mfrom: (1.1.64 upstream)
  • Revision ID: james.westby@ubuntu.com-20100901125404-3d96lh3oo4karbv3
Tags: 2.92.92.is.2.31.91-0ubuntu1
* New upstream release
* debian/control:
  - Drop build-depends on libgconf2-dev
  - Build-depend on dh-autoreconf, gnome-common
* debian/rules:
  - Use autoreconf.mk
* debian/gnome-keyring.install:
  - No longer provides a gconf schema
* debian/libgcr0.symbols:
  - Updated
* debian/patches/90_git_pam_headers.patch:
  - Fix incorrect PAM header check
* debian/patches/05_login_unlock_string.patch:
* debian/patches/90_git_keyring_encoding.patch:
  - Applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* 
2
 
 * gnome-keyring
3
 
 * 
4
 
 * Copyright (C) 2009 Stefan Walter
5
 
 * 
6
 
 * This program is free software; you can redistribute it and/or modify 
7
 
 * it under the terms of the GNU Lesser General Public License as
8
 
 * published by the Free Software Foundation; either version 2.1 of
9
 
 * the License, or (at your option) any later version.
10
 
 *  
11
 
 * This program is distributed in the hope that it will be useful, but
12
 
 * WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 
 * Lesser General Public License for more details.
15
 
 *  
16
 
 * You should have received a copy of the GNU Lesser General Public
17
 
 * License along with this program; if not, write to the Free Software
18
 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19
 
 * 02111-1307, USA.  
20
 
 */
21
 
 
22
 
#ifndef __GCK_SECRET_DATA_H__
23
 
#define __GCK_SECRET_DATA_H__
24
 
 
25
 
#include <glib-object.h>
26
 
 
27
 
#include "gck-secret-types.h"
28
 
 
29
 
#include "gck/gck-types.h"
30
 
 
31
 
#define GCK_TYPE_SECRET_DATA               (gck_secret_data_get_type ())
32
 
#define GCK_SECRET_DATA(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), GCK_TYPE_SECRET_DATA, GckSecretData))
33
 
#define GCK_SECRET_DATA_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), GCK_TYPE_SECRET_DATA, GckSecretDataClass))
34
 
#define GCK_IS_SECRET_DATA(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GCK_TYPE_SECRET_DATA))
35
 
#define GCK_IS_SECRET_DATA_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((klass), GCK_TYPE_SECRET_DATA))
36
 
#define GCK_SECRET_DATA_GET_CLASS(obj)     (G_TYPE_INSTANCE_GET_CLASS ((obj), GCK_TYPE_SECRET_DATA, GckSecretDataClass))
37
 
 
38
 
typedef struct _GckSecretDataClass GckSecretDataClass;
39
 
 
40
 
struct _GckSecretDataClass {
41
 
        GObjectClass parent_class;
42
 
};
43
 
 
44
 
GType                gck_secret_data_get_type        (void);
45
 
 
46
 
GckSecret*           gck_secret_data_get_secret      (GckSecretData *self,
47
 
                                                      const gchar *identifier);
48
 
 
49
 
const guchar*        gck_secret_data_get_raw         (GckSecretData *self,
50
 
                                                      const gchar *identifier,
51
 
                                                      gsize *n_result);
52
 
 
53
 
void                 gck_secret_data_set_secret      (GckSecretData *self,
54
 
                                                      const gchar *identifier,
55
 
                                                      GckSecret *secret);
56
 
 
57
 
void                 gck_secret_data_set_transacted  (GckSecretData *self,
58
 
                                                      GckTransaction *transaction,
59
 
                                                      const gchar *identifier,
60
 
                                                      GckSecret *secret);
61
 
 
62
 
void                 gck_secret_data_remove_secret   (GckSecretData *self,
63
 
                                                      const gchar *identifier);
64
 
 
65
 
GckSecret*           gck_secret_data_get_master      (GckSecretData *self);
66
 
 
67
 
void                 gck_secret_data_set_master      (GckSecretData *self,
68
 
                                                      GckSecret *master);
69
 
 
70
 
#endif /* __GCK_SECRET_DATA_H__ */