summaryrefslogtreecommitdiff
path: root/pppd/tls.h
blob: 39fdef7739894ffa16783fff67fb610bb7c7344b (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
/*
 * Copyright (c) 2021 Eivind Næss. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. The name(s) of the authors of this software must not be used to
 *    endorse or promote products derived from this software without
 *    prior written permission.
 *
 * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO
 * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
 * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
 * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#ifndef TLS_H
#define TLS_H

/**
 * Structure used in verifying the peer certificate
 */
struct tls_info;

/**
 * Initialize the SSL library
 */
int tls_init();

/**
 * Get the SSL_METHOD
 */
const SSL_METHOD* tls_method();

/**
 * Configure the SSL options
 */
int tls_set_opts(SSL_CTX *ctx);

/**
 * Configure the SSL context's max TLS version
 */
int tls_set_version(SSL_CTX *ctx, const char *max_version);

/** 
 * Configure the SSL context's verify callback
 */
int tls_set_verify(SSL_CTX *ctx, int depth);

/**
 * Configure the SSL verify information
 */
int tls_set_verify_info(SSL *ssl, const char *peer_name, const char *peer_cert_file, 
        bool client, struct tls_info **out);

/**
 * Free the tls_info structure and it's members
 */
void tls_free_verify_info(struct tls_info **in);

/**
 * Configure the SSL context's CRL details
 */
int tls_set_crl(SSL_CTX *ctx, const char *crl_dir, const char *crl_file);

/**
 * Configure the SSL context's CA verify locations
 */
int tls_set_ca(SSL_CTX *ctx, const char *ca_dir, const char *ca_file);

/**
 * Log all errors from ssl library
 */
void tls_log_sslerr( void );

#endif	/* TLS_H */