Statistics
| Revision:

root / libsylph / ssl.h

History | View | Annotate | Download (1.7 kB)

1
/*
2
 * LibSylph -- E-Mail client library
3
 * Copyright (C) 1999-2006 Hiroyuki Yamamoto
4
 *
5
 * This library is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU Lesser General Public
7
 * License as published by the Free Software Foundation; either
8
 * version 2.1 of the License, or (at your option) any later version.
9
 *
10
 * This library is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 * Lesser General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU Lesser General Public
16
 * License along with this library; if not, write to the Free Software
17
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 */
19
20
#ifndef __SSL_H__
21
#define __SSL_H__
22
23
#ifdef HAVE_CONFIG_H
24
#  include "config.h"
25
#endif
26
27
#if USE_SSL
28
29
#include <glib.h>
30
#include <openssl/crypto.h>
31
#include <openssl/x509.h>
32
#include <openssl/pem.h>
33
#include <openssl/ssl.h>
34
#include <openssl/err.h>
35
36
#include "socket.h"
37
38
typedef enum {
39
        SSL_METHOD_SSLv23,
40
        SSL_METHOD_TLSv1
41
} SSLMethod;
42
43
typedef enum {
44
        SSL_NONE,
45
        SSL_TUNNEL,
46
        SSL_STARTTLS
47
} SSLType;
48
49
typedef gint (*SSLVerifyFunc)                (SockInfo        *sockinfo,
50
                                         const gchar        *hostname,
51
                                         X509                *server_cert,
52
                                         glong                 verify_result);
53
54
void ssl_init                                (void);
55
void ssl_done                                (void);
56
gboolean ssl_init_socket                (SockInfo        *sockinfo);
57
gboolean ssl_init_socket_with_method        (SockInfo        *sockinfo,
58
                                         SSLMethod         method);
59
void ssl_done_socket                        (SockInfo        *sockinfo);
60
61
void ssl_set_verify_func                (SSLVerifyFunc         func);
62
63
#endif /* USE_SSL */
64
65
#endif /* __SSL_H__ */