summaryrefslogtreecommitdiff
path: root/wocky/wocky-tls-handler.h
blob: deef6d6390198053522751d7c96b15140b71bad7 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
 * wocky-tls-handler.h - Header for WockyTLSHandler
 * Copyright (C) 2010 Collabora Ltd.
 * @author Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
 *
 * This library 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 library 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 library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
#if !defined (WOCKY_H_INSIDE) && !defined (WOCKY_COMPILATION)
# error "Only <wocky/wocky.h> can be included directly."
#endif

#ifndef __WOCKY_TLS_HANDLER_H__
#define __WOCKY_TLS_HANDLER_H__

#include <glib-object.h>

#include "wocky-tls.h"

G_BEGIN_DECLS

typedef struct _WockyTLSHandler WockyTLSHandler;

/**
 * WockyTLSHandlerClass:
 * @verify_async_func: a function to call to start an asychronous
 *   verify operation; see wocky_tls_handler_verify_async() for more
 *   details
 * @verify_finish_func: a function to call to finish an asychronous
 *   verify operation; see wocky_tls_handler_verify_finish() for more
 *   details
 *
 * The class of a #WockyTLSHandler.
 */
typedef struct _WockyTLSHandlerClass WockyTLSHandlerClass;
typedef struct _WockyTLSHandlerPrivate WockyTLSHandlerPrivate;

typedef void (*WockyTLSHandlerVerifyAsyncFunc) (WockyTLSHandler *self,
    WockyTLSSession *tls_session,
    const gchar *peername,
    GStrv extra_identities,
    GAsyncReadyCallback callback,
    gpointer user_data);

typedef gboolean (*WockyTLSHandlerVerifyFinishFunc) (WockyTLSHandler *self,
    GAsyncResult *res,
    GError **error);

struct _WockyTLSHandlerClass {
  /*<private>*/
  GObjectClass parent_class;

  /*<public>*/
  WockyTLSHandlerVerifyAsyncFunc verify_async_func;
  WockyTLSHandlerVerifyFinishFunc verify_finish_func;
};

struct _WockyTLSHandler {
  /*<private>*/
  GObject parent;

  WockyTLSHandlerPrivate *priv;
};

GType wocky_tls_handler_get_type (void);

#define WOCKY_TYPE_TLS_HANDLER \
  (wocky_tls_handler_get_type ())
#define WOCKY_TLS_HANDLER(obj) \
  (G_TYPE_CHECK_INSTANCE_CAST((obj), WOCKY_TYPE_TLS_HANDLER, WockyTLSHandler))
#define WOCKY_TLS_HANDLER_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_CAST((klass), WOCKY_TYPE_TLS_HANDLER, \
      WockyTLSHandlerClass))
#define WOCKY_IS_TLS_HANDLER(obj) \
  (G_TYPE_CHECK_INSTANCE_TYPE((obj), WOCKY_TYPE_TLS_HANDLER))
#define WOCKY_IS_TLS_HANDLER_CLASS(klass) \
  (G_TYPE_CHECK_CLASS_TYPE((klass), WOCKY_TYPE_TLS_HANDLER))
#define WOCKY_TLS_HANDLER_GET_CLASS(obj) \
  (G_TYPE_INSTANCE_GET_CLASS ((obj), WOCKY_TYPE_TLS_HANDLER, \
      WockyTLSHandlerClass))

WockyTLSHandler * wocky_tls_handler_new (gboolean ignore_ssl_errors);

void wocky_tls_handler_verify_async (WockyTLSHandler *self,
    WockyTLSSession *tls_session,
    const gchar *peername,
    GStrv extra_identities,
    GAsyncReadyCallback callback,
    gpointer user_data);
gboolean wocky_tls_handler_verify_finish (WockyTLSHandler *self,
    GAsyncResult *result,
    GError **error);

gboolean wocky_tls_handler_add_ca (WockyTLSHandler *self,
    const gchar *path);
void wocky_tls_handler_forget_cas (WockyTLSHandler *self);

gboolean wocky_tls_handler_add_crl (WockyTLSHandler *self, const gchar *path);

GSList *wocky_tls_handler_get_cas (WockyTLSHandler *self);
GSList *wocky_tls_handler_get_crl (WockyTLSHandler *self);

G_END_DECLS

#endif /* #ifndef __WOCKY_TLS_HANDLER_H__*/