blob: e71ba793c4fe0e656471c8f01be3009a0cd72bbd [file] [log] [blame]
Emeric Brunfc0421f2012-09-07 17:30:07 +02001/*
2 * include/types/ssl_sock.h
3 * SSL settings for listeners and servers
4 *
5 * Copyright (C) 2012 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef _TYPES_SSL_SOCK_H
23#define _TYPES_SSL_SOCK_H
24
25#include <openssl/ssl.h>
26#include <ebmbtree.h>
27
28struct sni_ctx {
29 SSL_CTX *ctx; /* context associated to the certificate */
30 int order; /* load order for the certificate */
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +020031 int neg; /* reject if match */
Emeric Brunfc0421f2012-09-07 17:30:07 +020032 struct ebmb_node name; /* node holding the servername value */
33};
34
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +020035extern struct list tlskeys_reference;
36
Nenad Merdanovic05552d42015-02-27 19:56:49 +010037struct tls_sess_key {
38 unsigned char name[16];
39 unsigned char aes_key[16];
40 unsigned char hmac_key[16];
41} __attribute__((packed));
42
Nenad Merdanovic146defa2015-05-09 08:46:00 +020043struct tls_keys_ref {
44 struct list list; /* Used to chain refs. */
45 char *filename;
46 int unique_id; /* Each pattern reference have unique id. */
47 struct tls_sess_key *tlskeys;
48 int tls_ticket_enc_index;
49};
50
Emeric Brunfc0421f2012-09-07 17:30:07 +020051#endif /* _TYPES_SSL_SOCK_H */