Files
wolfssl/IDE/PlatformIO/examples/wolfssl_test/src/main.c

49 lines
1.5 KiB
C
Raw Normal View History

2024-05-16 10:50:02 -07:00
/* PlatformIO wolfssl_test main.c
*
2025-01-21 09:55:03 -07:00
* Copyright (C) 2006-2025 wolfSSL Inc.
2024-05-16 10:50:02 -07:00
*
* 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
*/
2024-05-17 16:47:07 -07:00
#include "main.h"
2024-05-16 10:50:02 -07:00
#include <wolfssl/wolfcrypt/settings.h>
#ifdef WOLFSSL_ESPIDF
#include <esp_log.h>
#include <rtc_wdt.h>
#include <wolfssl/wolfcrypt/port/Espressif/esp32-crypt.h>
#endif
2024-05-17 16:47:07 -07:00
#include <wolfssl/version.h>
#include <wolfssl/wolfcrypt/types.h>
#include <wolfcrypt/test/test.h>
2024-05-17 16:47:07 -07:00
#define TAG "wolfSSL demo"
void app_main() {
int ret = 0;
#ifdef WOLFSSL_ESPIDF
ESP_LOGI(TAG, "Found WOLFSSL_ESPIDF!");
#endif
2024-05-17 16:47:07 -07:00
printf("Hello World wolfSSL Version %s\n", LIBWOLFSSL_VERSION_STRING);
#if defined(HAVE_VERSION_EXTENDED_INFO) && defined(WOLFSSL_ESPIDF)
esp_ShowExtendedSystemInfo();
#endif
ret = wolf_test_task();
2024-05-17 16:47:07 -07:00
printf("\nwolf_test_task complete! result code: %d\n", ret);
}