tls_ffdhe.h
Go to the documentation of this file.
1 /**
2  * @file tls_ffdhe.h
3  * @brief FFDHE key exchange
4  *
5  * @section License
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  *
9  * Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.
10  *
11  * This file is part of CycloneSSL Open.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
26  *
27  * @author Oryx Embedded SARL (www.oryx-embedded.com)
28  * @version 2.4.0
29  **/
30 
31 #ifndef _TLS_FFDHE_H
32 #define _TLS_FFDHE_H
33 
34 //Dependencies
35 #include "tls.h"
36 #include "pkc/dh.h"
37 
38 //C++ guard
39 #ifdef __cplusplus
40 extern "C" {
41 #endif
42 
43 
44 /**
45  * @brief FFDHE parameters
46  **/
47 
48 typedef struct
49 {
50  const char_t *name; ///<Group name
51  const uint8_t p[512]; ///<Prime modulus
52  size_t pLen; ///<Length of the prime modulus, in bytes
53  uint8_t g; ///<Generator
55 
56 
57 //TLS related functions
59  const TlsSupportedGroupList *groupList);
60 
62  uint16_t namedGroup);
63 
65  const TlsFfdheGroup *ffdheGroup);
66 
67 //C++ guard
68 #ifdef __cplusplus
69 }
70 #endif
71 
72 #endif
char char_t
Definition: compiler_port.h:48
Diffie-Hellman key exchange.
error_t
Error codes.
Definition: error.h:43
uint8_t p
Definition: ndp.h:300
Diffie-Hellman parameters.
Definition: dh.h:49
FFDHE parameters.
Definition: tls_ffdhe.h:49
uint8_t g
Generator.
Definition: tls_ffdhe.h:53
const char_t * name
Group name.
Definition: tls_ffdhe.h:50
size_t pLen
Length of the prime modulus, in bytes.
Definition: tls_ffdhe.h:52
TLS (Transport Layer Security)
TlsSupportedGroupList
Definition: tls.h:1634
#define TlsContext
Definition: tls.h:36
error_t tlsSelectFfdheGroup(TlsContext *context, const TlsSupportedGroupList *groupList)
Select the named group to be used when performing FFDHE key exchange.
Definition: tls_ffdhe.c:174
const TlsFfdheGroup * tlsGetFfdheGroup(TlsContext *context, uint16_t namedGroup)
Get the FFDHE parameters that match the specified named group.
Definition: tls_ffdhe.c:314
error_t tlsLoadFfdheParameters(DhParameters *params, const TlsFfdheGroup *ffdheGroup)
Load FFDHE parameters.
Definition: tls_ffdhe.c:374