~ubuntu-branches/debian/squeeze/gnome-keyring/squeeze

« back to all changes in this revision

Viewing changes to pkcs11/gck/gck-attributes.h

  • Committer: Bazaar Package Importer
  • Author(s): Sjoerd Simons, Josselin Mouette, Sjoerd Simons
  • Date: 2010-04-27 23:11:24 UTC
  • mfrom: (1.1.58 upstream)
  • Revision ID: james.westby@ubuntu.com-20100427231124-v9o96ml6c56bla35
Tags: 2.30.1-2
[ Josselin Mouette ]
* Update README.Debian to match reality.

[ Sjoerd Simons ]
* Add service file for org.freedesktop.secrets to ensure gnome-keyring gets
  autolaunched when it's needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
CK_RV                 gck_attribute_get_bool                           (CK_ATTRIBUTE_PTR attr,
32
32
                                                                        gboolean *value);
33
33
 
 
34
CK_RV                 gck_attribute_get_ulong                          (CK_ATTRIBUTE_PTR attr,
 
35
                                                                        CK_ULONG *value);
 
36
 
34
37
CK_RV                 gck_attribute_get_time                           (CK_ATTRIBUTE_PTR attr,
35
38
                                                                        glong *value);
36
39
 
 
40
CK_RV                 gck_attribute_get_string                         (CK_ATTRIBUTE_PTR attr,
 
41
                                                                        gchar **value);
 
42
 
 
43
CK_RV                 gck_attribute_get_mpi                            (CK_ATTRIBUTE_PTR attr,
 
44
                                                                        gcry_mpi_t *value);
 
45
 
 
46
CK_RV                 gck_attribute_get_template                       (CK_ATTRIBUTE_PTR attr,
 
47
                                                                        GArray **template);
 
48
 
 
49
CK_RV                 gck_attribute_set_empty                          (CK_ATTRIBUTE_PTR attr);
 
50
 
37
51
CK_RV                 gck_attribute_set_bool                           (CK_ATTRIBUTE_PTR attr,
38
52
                                                                        CK_BBOOL value);
39
53
 
53
67
                                                                        gconstpointer value,
54
68
                                                                        gsize n_value);
55
69
 
56
 
CK_RV                 gck_attribute_return_data                        (CK_VOID_PTR output,
57
 
                                                                        CK_ULONG_PTR n_output,
58
 
                                                                        gconstpointer input,
59
 
                                                                        gsize n_input);
60
 
 
61
70
CK_RV                 gck_attribute_set_mpi                            (CK_ATTRIBUTE_PTR attr, 
62
71
                                                                        gcry_mpi_t mpi);
63
72
 
 
73
CK_RV                 gck_attribute_set_template                       (CK_ATTRIBUTE_PTR attr,
 
74
                                                                        GArray *template);
 
75
 
64
76
guint                 gck_attribute_hash                               (gconstpointer v);
65
77
 
66
78
gboolean              gck_attribute_equal                              (gconstpointer a,
98
110
                                                                        CK_ATTRIBUTE_TYPE type,
99
111
                                                                        gcry_mpi_t *mpi);
100
112
 
 
113
gboolean              gck_attributes_find_string                       (CK_ATTRIBUTE_PTR attrs,
 
114
                                                                        CK_ULONG n_attrs,
 
115
                                                                        CK_ATTRIBUTE_TYPE type,
 
116
                                                                        gchar **value);
 
117
 
 
118
GArray*               gck_template_new                                 (CK_ATTRIBUTE_PTR attrs,
 
119
                                                                        CK_ULONG n_attrs);
 
120
 
 
121
void                  gck_template_set                                 (GArray *template,
 
122
                                                                        CK_ATTRIBUTE_PTR attr);
 
123
 
 
124
void                  gck_template_free                                (GArray *template);
 
125
 
 
126
gboolean              gck_template_find_boolean                        (GArray *template,
 
127
                                                                        CK_ATTRIBUTE_TYPE type,
 
128
                                                                        gboolean *value);
 
129
 
 
130
gboolean              gck_template_find_ulong                          (GArray *template,
 
131
                                                                        CK_ATTRIBUTE_TYPE type,
 
132
                                                                        gulong *value);
 
133
 
101
134
#endif /* GCK_ATTRIBUTE_H_ */