main.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* main.c
  2. *
  3. * Copyright (C) 2006-2023 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. #include <wolfssl/wolfcrypt/settings.h>
  22. #include <wolfcrypt/test/test.h>
  23. #include <wolfcrypt/benchmark/benchmark.h>
  24. /* wolfCrypt_Init/wolfCrypt_Cleanup to turn CryptoCell hardware on/off */
  25. #include <wolfssl/wolfcrypt/wc_port.h>
  26. /* SEGGER_RTT_Init, you can potentially replace it with other serial terminal */
  27. #include "SEGGER_RTT.h"
  28. int main(void)
  29. {
  30. int ret;
  31. SEGGER_RTT_Init();
  32. if ((ret = wolfCrypt_Init()) != 0) {
  33. printf("wolfCrypt_Init failed %d\n", ret);
  34. return -1;
  35. }
  36. #ifndef NO_CRYPT_TEST
  37. printf("\nwolfCrypt Test Started\n");
  38. wolfcrypt_test(NULL);
  39. printf("\nwolfCrypt Test Completed\n");
  40. #endif
  41. #ifndef NO_CRYPT_BENCHMARK
  42. printf("\nBenchmark Test Started\n");
  43. benchmark_test(NULL);
  44. printf("\nBenchmark Test Completed\n");
  45. #endif
  46. if ((ret = wolfCrypt_Cleanup()) != 0) {
  47. printf("wolfCrypt_Cleanup failed %d\n", ret);
  48. return -1;
  49. }
  50. while(1) {
  51. __WFI();
  52. }
  53. return 0;
  54. }