OpenVPN
crypto_mbedtls.h
Go to the documentation of this file.
1/*
2 * OpenVPN -- An application to securely tunnel IP networks
3 * over a single TCP/UDP port, with support for SSL/TLS-based
4 * session authentication and key exchange,
5 * packet encryption, packet authentication, and
6 * packet compression.
7 *
8 * Copyright (C) 2002-2024 OpenVPN Inc <sales@openvpn.net>
9 * Copyright (C) 2010-2021 Fox Crypto B.V. <openvpn@foxcrypto.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2
13 * as published by the Free Software Foundation.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 */
24
30#ifndef CRYPTO_MBEDTLS_H_
31#define CRYPTO_MBEDTLS_H_
32
33#include <stdbool.h>
34#include <mbedtls/cipher.h>
35#include <mbedtls/md.h>
36#include <mbedtls/ctr_drbg.h>
37
39typedef mbedtls_md_info_t md_kt_t;
40
42typedef mbedtls_cipher_context_t cipher_ctx_t;
43
45typedef mbedtls_md_context_t md_ctx_t;
46
48typedef mbedtls_md_context_t hmac_ctx_t;
49
50/* Use a dummy type for the provider */
51typedef void provider_t;
52
54#define OPENVPN_MAX_IV_LENGTH MBEDTLS_MAX_IV_LENGTH
55
57#define OPENVPN_MODE_CBC MBEDTLS_MODE_CBC
58
60#define OPENVPN_MODE_OFB MBEDTLS_MODE_OFB
61
63#define OPENVPN_MODE_CFB MBEDTLS_MODE_CFB
64
66#define OPENVPN_MODE_GCM MBEDTLS_MODE_GCM
67
68typedef mbedtls_operation_t crypto_operation_t;
69
71#define OPENVPN_OP_ENCRYPT MBEDTLS_ENCRYPT
72
74#define OPENVPN_OP_DECRYPT MBEDTLS_DECRYPT
75
76#define MD4_DIGEST_LENGTH 16
77#define MD5_DIGEST_LENGTH 16
78#define SHA_DIGEST_LENGTH 20
79#define SHA256_DIGEST_LENGTH 32
80
91mbedtls_ctr_drbg_context *rand_ctx_get(void);
92
93#ifdef ENABLE_PREDICTION_RESISTANCE
97void rand_ctx_enable_prediction_resistance(void);
98
99#endif
100
110bool mbed_log_err(unsigned int flags, int errval, const char *prefix);
111
122bool mbed_log_func_line(unsigned int flags, int errval, const char *func,
123 int line);
124
126static inline bool
127mbed_log_func_line_lite(unsigned int flags, int errval,
128 const char *func, int line)
129{
130 if (errval)
131 {
132 return mbed_log_func_line(flags, errval, func, line);
133 }
134 return true;
135}
136
149#define mbed_ok(errval) \
150 mbed_log_func_line_lite(D_CRYPT_ERRORS, errval, __func__, __LINE__)
151
152#endif /* CRYPTO_MBEDTLS_H_ */
static bool mbed_log_func_line_lite(unsigned int flags, int errval, const char *func, int line)
Wraps mbed_log_func_line() to prevent function calls for non-errors.
mbedtls_ctr_drbg_context * rand_ctx_get(void)
Returns a singleton instance of the mbed TLS random number generator.
mbedtls_cipher_context_t cipher_ctx_t
Generic cipher context.
mbedtls_md_context_t hmac_ctx_t
Generic HMAC context.
mbedtls_md_context_t md_ctx_t
Generic message digest context.
bool mbed_log_err(unsigned int flags, int errval, const char *prefix)
Log the supplied mbed TLS error, prefixed by supplied prefix.
mbedtls_md_info_t md_kt_t
Generic message digest key type context.
void provider_t
mbedtls_operation_t crypto_operation_t
bool mbed_log_func_line(unsigned int flags, int errval, const char *func, int line)
Log the supplied mbed TLS error, prefixed by function name and line number.