summaryrefslogtreecommitdiffstats
path: root/extra/wolfssl/wolfssl/IDE/Renesas/e2studio/RZN2L/common/wolfssl_demo.h
blob: 9f5a8cd0ae2059bb7a716e9e78160d578a5cc109 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* wolfssl_demo.h
 *
 * Copyright (C) 2006-2023 wolfSSL Inc.
 *
 * This file is part of wolfSSL.
 *
 * wolfSSL is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * wolfSSL is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
 */

#ifndef WOLFSSL_DEMO_H_
#define WOLFSSL_DEMO_H_

#include <wolfssl/ssl.h>
#include "FreeRTOS_IP.h"
#include "FreeRTOS_Sockets.h"

#define FREQ 10000 /* Hz */

/* Client connects to the server with these details. */
#define SERVER_IP    "192.168.11.65"
#define DEFAULT_PORT 11111

typedef struct tagTestInfo
{
     int  id;
     int  port;
     char name[32];
     const char* cipher;
     WOLFSSL_CTX* ctx;
} TestInfo;

/* Enable Crypt Unit Test */
/* #define UNIT_TEST */

/* Enable wolfcrypt test */
/* can be enabled with benchmark test */
#define CRYPT_TEST

/* Enable benchmark               */
/* can be enabled with cyrpt test */
/* #define BENCHMARK */

/* Enable TLS client */
/* #define TLS_CLIENT */

/* Enable TLS Server */
/* #define TLS_SERVER */

#if defined(TLS_CLIENT)
    extern WOLFSSL_CTX *client_ctx;

    /* Use RSA certificates */
    #define USE_CERT_BUFFERS_2048
    /* Use ECC certificates */
    /*#define USE_CERT_BUFFERS_256*/
#endif

#if defined(TLS_SERVER)
    extern WOLFSSL_CTX *server_ctx;

    /* Use RSA certificates */
    #define USE_CERT_BUFFERS_2048
    /* Use ECC certificates */
    /*#define USE_CERT_BUFFERS_256*/
#endif

#if defined(USE_CERT_BUFFERS_2048) && defined(USE_CERT_BUFFERS_256)
    #error please set either macro USE_CERT_BUFFERS_2048 or USE_CERT_BUFFERS_256
#endif

#define FR_SOCKET_SUCCESS 0

static void util_Cleanup(WOLFSSL_CTX *ctx, WOLFSSL *ssl) {
    printf("Cleaning up socket and wolfSSL objects.\n");
    if (ssl != NULL)
        wolfSSL_free(ssl);
    if (ctx != NULL)
        wolfSSL_CTX_free(ctx);
    wolfSSL_Cleanup();
}

static inline void util_inf_loop(WOLFSSL_CTX *ctx, WOLFSSL *ssl) {
    util_Cleanup(ctx, ssl);
    printf("Reached infinite loop.\n");
    while (1)
        ;
}

void TCPInit();
void wolfSSL_TLS_client_init();
int wolfSSL_TLS_client_do(void *pvParam);
void wolfSSL_TLS_server_init();
int wolfSSL_TLS_server_do(void *pvParam);
void wolfSSL_TLS_cleanup();

#endif /* WOLFSSL_DEMO_H_ */