|
| 1 | +# Kconfig main |
| 2 | +# |
| 3 | +# Copyright (C) 2006-2025 wolfSSL Inc. |
| 4 | +# |
| 5 | +# This file is part of wolfSSL. |
| 6 | +# |
| 7 | +# wolfSSL is free software; you can redistribute it and/or modify |
| 8 | +# it under the terms of the GNU General Public License as published by |
| 9 | +# the Free Software Foundation; either version 2 of the License, or |
| 10 | +# (at your option) any later version. |
| 11 | +# |
| 12 | +# wolfSSL 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 |
| 15 | +# GNU General Public License for more details. |
| 16 | +# |
| 17 | +# You should have received a copy of the GNU General Public License |
| 18 | +# along with this program; if not, write to the Free Software |
| 19 | +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA |
| 20 | +# |
| 21 | + |
| 22 | +# Kconfig File Version 5.7.2.001 for wolfssl_template |
| 23 | + |
1 | 24 | menu "Example Configuration" |
2 | 25 |
|
| 26 | +choice WOLFSSL_EXAMPLE_CHOOSE |
| 27 | + prompt "Choose Example (See wolfssl/include/user_settings.h)" |
| 28 | + default WOLFSSL_EXAMPLE_NAME_NONE |
| 29 | + help |
| 30 | + The user settings file can be adjusted to specific wolfSSL examples. |
| 31 | + |
| 32 | + config WOLFSSL_EXAMPLE_NAME_TEMPLATE |
| 33 | + bool "wolfSSL Template" |
| 34 | + help |
| 35 | + The sample template app compiles in wolfSSL and prints the current wolfSSL Version. Nothing more. |
| 36 | + |
| 37 | + config WOLFSSL_EXAMPLE_NAME_TEST |
| 38 | + bool "wolfSSL Test" |
| 39 | + help |
| 40 | + This app tests all cryptographic functions currently enabled. See also Benchmark performance app. |
| 41 | + |
| 42 | + config WOLFSSL_EXAMPLE_NAME_BENCHMARK |
| 43 | + bool "wolfSSL Benchmark" |
| 44 | + help |
| 45 | + Benchmark performance app. See also cryptographic test. |
| 46 | + |
| 47 | + config WOLFSSL_EXAMPLE_NAME_TLS_CLIENT |
| 48 | + bool "TLS Client" |
| 49 | + help |
| 50 | + TLS Client Example app. Needs WiFi and a listening server on port 11111. |
| 51 | + |
| 52 | + config WOLFSSL_EXAMPLE_NAME_TLS_SERVER |
| 53 | + bool "TLS Server" |
| 54 | + help |
| 55 | + TLS Server Example app. Needs WiFi. More interesting with a TLS client using port 11111. |
| 56 | + |
| 57 | + config WOLFSSL_EXAMPLE_NAME_WOLFSSH_TEMPLATE |
| 58 | + bool "SSH Template App" |
| 59 | + help |
| 60 | + Bare-bones Hello World app that only compiles in wolfSSL and wolfSSH. |
| 61 | + See wolfSSL/wolfssh on GitHub. |
| 62 | + |
| 63 | + config WOLFSSL_EXAMPLE_NAME_WOLFSSH_ECHOSERVER |
| 64 | + bool "SSH Echo Server" |
| 65 | + help |
| 66 | + See wolfSSL/wolfssh on GitHub. |
| 67 | + |
| 68 | + config WOLFSSL_EXAMPLE_NAME_ESP32_SSH_SERVER |
| 69 | + bool "SSH to UART Server for the ESP32" |
| 70 | + help |
| 71 | + See wolfSSL/wolfssh-examples on GitHub. |
| 72 | + |
| 73 | + config WOLFSSL_EXAMPLE_NAME_ESP8266_SSH_SERVER |
| 74 | + bool "SSH to UART Server for the ESP8266" |
| 75 | + help |
| 76 | + See wolfSSL/wolfssh-examples on GitHub. |
| 77 | + |
| 78 | + config WOLFSSL_EXAMPLE_NAME_WOLFMQTT_TEMPLATE |
| 79 | + bool "MQTT Template" |
| 80 | + help |
| 81 | + See wolfSSL/wolfmqtt on GitHub. |
| 82 | + |
| 83 | + config WOLFSSL_EXAMPLE_NAME_WOLFMQTT_AWS_IOT_MQTT |
| 84 | + bool "MQTT AWS IoT" |
| 85 | + help |
| 86 | + See wolfSSL/wolfmqtt on GitHub. |
| 87 | + |
| 88 | + config WOLFTPM_EXAMPLE_NAME_ESPRESSIF |
| 89 | + bool "TPM Test Example for the ESP32" |
| 90 | + help |
| 91 | + See wolfSSL/wolfTPM on GitHub. |
| 92 | + |
| 93 | + config WOLFSSL_EXAMPLE_NAME_NONE |
| 94 | + bool "Other" |
| 95 | + help |
| 96 | + A specific example app is not defined. |
| 97 | + |
| 98 | +endchoice |
| 99 | + |
3 | 100 | config BENCH_ARGV |
4 | 101 | string "Arguments for benchmark test" |
5 | 102 | default "-lng 0" |
|
0 commit comments