summaryrefslogtreecommitdiff
path: root/gui/simple-greeter/extensions/smartcard/gdm-smartcard.h
blob: 20303bdc69063ada2faeaaa35e3a43e9f285e40a (plain)
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
/* securitycard.h - api for reading and writing data to a security card
 *
 * Copyright (C) 2006 Ray Strode
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 */
#ifndef GDM_SMARTCARD_H
#define GDM_SMARTCARD_H

#include <glib.h>
#include <glib-object.h>

#include <secmod.h>

G_BEGIN_DECLS
#define GDM_TYPE_SMARTCARD            (gdm_smartcard_get_type ())
#define GDM_SMARTCARD(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GDM_TYPE_SMARTCARD, GdmSmartcard))
#define GDM_SMARTCARD_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), GDM_TYPE_SMARTCARD, GdmSmartcardClass))
#define GDM_IS_SMARTCARD(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GDM_TYPE_SMARTCARD))
#define GDM_IS_SMARTCARD_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GDM_TYPE_SMARTCARD))
#define GDM_SMARTCARD_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj), GDM_TYPE_SMARTCARD, GdmSmartcardClass))
#define GDM_SMARTCARD_ERROR           (gdm_smartcard_error_quark ())
typedef struct _GdmSmartcardClass GdmSmartcardClass;
typedef struct _GdmSmartcard GdmSmartcard;
typedef struct _GdmSmartcardPrivate GdmSmartcardPrivate;
typedef enum _GdmSmartcardError GdmSmartcardError;
typedef enum _GdmSmartcardState GdmSmartcardState;

typedef struct _GdmSmartcardRequest GdmSmartcardRequest;

struct _GdmSmartcard {
    GObject parent;

    /*< private > */
    GdmSmartcardPrivate *priv;
};

struct _GdmSmartcardClass {
    GObjectClass parent_class;

    void (* inserted) (GdmSmartcard *card);
    void (* removed)  (GdmSmartcard *card);
};

enum _GdmSmartcardError {
    GDM_SMARTCARD_ERROR_GENERIC = 0,
};

enum _GdmSmartcardState {
    GDM_SMARTCARD_STATE_INSERTED = 0,
    GDM_SMARTCARD_STATE_REMOVED,
};

GType gdm_smartcard_get_type (void) G_GNUC_CONST;
GQuark gdm_smartcard_error_quark (void) G_GNUC_CONST;

CK_SLOT_ID gdm_smartcard_get_slot_id (GdmSmartcard *card);
gint gdm_smartcard_get_slot_series (GdmSmartcard *card);
GdmSmartcardState gdm_smartcard_get_state (GdmSmartcard *card);

char *gdm_smartcard_get_name (GdmSmartcard *card);
gboolean gdm_smartcard_is_login_card (GdmSmartcard *card);

gboolean gdm_smartcard_unlock (GdmSmartcard *card,
                               const char   *password);

/* don't under any circumstances call these functions */
#ifdef GDM_SMARTCARD_ENABLE_INTERNAL_API

GdmSmartcard *_gdm_smartcard_new (SECMODModule *module,
                                  CK_SLOT_ID    slot_id,
                                  gint          slot_series);
GdmSmartcard *_gdm_smartcard_new_from_name (SECMODModule *module,
                                            const char   *name);

void _gdm_smartcard_set_state (GdmSmartcard      *card,
                               GdmSmartcardState  state);
#endif

G_END_DECLS
#endif                                /* GDM_SMARTCARD_H */