summaryrefslogtreecommitdiff
path: root/libsylph/ssl.h
diff options
context:
space:
mode:
authorSimeon Simeonov2018-02-26 11:23:00 +0100
committerSimeon Simeonov2018-02-26 11:23:00 +0100
commit0b3cbf57875fd692e4ba0b336fefa4bee1ed00dc (patch)
treeaf916a30553c78ce9d4f2d8658656a175c5b6921 /libsylph/ssl.h
Initial commit for sylpheed 3.7.0
Diffstat (limited to 'libsylph/ssl.h')
-rw-r--r--libsylph/ssl.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/libsylph/ssl.h b/libsylph/ssl.h
new file mode 100644
index 0000000..a9f690d
--- /dev/null
+++ b/libsylph/ssl.h
@@ -0,0 +1,65 @@
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
38typedef enum {
39 SSL_METHOD_SSLv23,
40 SSL_METHOD_TLSv1
41} SSLMethod;
42
43typedef enum {
44 SSL_NONE,
45 SSL_TUNNEL,
46 SSL_STARTTLS
47} SSLType;
48
49typedef gint (*SSLVerifyFunc) (SockInfo *sockinfo,
50 const gchar *hostname,
51 X509 *server_cert,
52 glong verify_result);
53
54void ssl_init (void);
55void ssl_done (void);
56gboolean ssl_init_socket (SockInfo *sockinfo);
57gboolean ssl_init_socket_with_method (SockInfo *sockinfo,
58 SSLMethod method);
59void ssl_done_socket (SockInfo *sockinfo);
60
61void ssl_set_verify_func (SSLVerifyFunc func);
62
63#endif /* USE_SSL */
64
65#endif /* __SSL_H__ */