1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/*
* gnome-keyring
*
* Copyright (C) 2008 Stefan Walter
*
* 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 License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this program; if not, see
* <http://www.gnu.org/licenses/>.
*/
#ifndef __GKM_STORE_H__
#define __GKM_STORE_H__
#include <glib-object.h>
#include "gkm-types.h"
#include "pkcs11/pkcs11.h"
enum {
GKM_STORE_IS_INTERNAL = 0x01,
GKM_STORE_IS_SENSITIVE = 0x02
};
#define GKM_TYPE_STORE (gkm_store_get_type ())
#define GKM_STORE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GKM_TYPE_STORE, GkmStore))
#define GKM_STORE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GKM_TYPE_STORE, GkmStoreClass))
#define GKM_IS_STORE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GKM_TYPE_STORE))
#define GKM_IS_STORE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GKM_TYPE_STORE))
#define GKM_STORE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GKM_TYPE_STORE, GkmStoreClass))
typedef struct _GkmStoreClass GkmStoreClass;
typedef struct _GkmStorePrivate GkmStorePrivate;
struct _GkmStore {
GObject parent;
GkmStorePrivate *pv;
};
struct _GkmStoreClass {
GObjectClass parent_class;
/* Virtual methods */
CK_RV (*read_value) (GkmStore *self, GkmObject *object, CK_ATTRIBUTE_PTR attr);
void (*write_value) (GkmStore *self, GkmTransaction *transaction, GkmObject *object, CK_ATTRIBUTE_PTR attr);
};
typedef CK_RV (*GkmStoreValidator) (GkmObject *object,
CK_ATTRIBUTE_PTR attr);
GType gkm_store_get_type (void);
gboolean gkm_store_lookup_schema (GkmStore *self,
CK_ATTRIBUTE_TYPE type,
guint *flags);
void gkm_store_register_schema (GkmStore *self,
CK_ATTRIBUTE_PTR type_and_default,
GkmStoreValidator validator,
guint flags);
void gkm_store_set_attribute (GkmStore *self,
GkmTransaction *transaction,
GkmObject *object,
CK_ATTRIBUTE_PTR attr);
void gkm_store_write_value (GkmStore *self,
GkmTransaction *transaction,
GkmObject *object,
CK_ATTRIBUTE_PTR attr);
CK_RV gkm_store_get_attribute (GkmStore *self,
GkmObject *object,
CK_ATTRIBUTE_PTR attr);
gconstpointer gkm_store_read_value (GkmStore *self,
GkmObject *object,
CK_ATTRIBUTE_TYPE type,
gsize *n_value);
gchar* gkm_store_read_string (GkmStore *self,
GkmObject *object,
CK_ATTRIBUTE_TYPE type);
void gkm_store_notify_attribute (GkmStore *self,
GkmObject *object,
CK_ATTRIBUTE_TYPE type);
#endif /* __GKM_STORE_H__ */
|