From 5ad5ba22997defd2fea4913708525261603d00bb Mon Sep 17 00:00:00 2001 From: kaleb-himes Date: Mon, 23 Dec 2024 11:44:56 -0700 Subject: [PATCH] Fix more overlong lines and add one more customer setting --- IDE/NETOS/user_settings.h | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/IDE/NETOS/user_settings.h b/IDE/NETOS/user_settings.h index fb143714b4..e37aeecaae 100644 --- a/IDE/NETOS/user_settings.h +++ b/IDE/NETOS/user_settings.h @@ -132,7 +132,8 @@ extern "C" { #define TFM_NO_ASM - /* Optimizations (on M0 UMULL is not supported, need another assembly solution) */ + /* Optimizations (on M0 UMULL is not supported, need another assembly + * solution) */ //#define TFM_ARM #endif @@ -194,7 +195,8 @@ extern "C" { #define HAVE_ECC521 #endif - /* Fixed point cache (speeds repeated operations against same private key) */ + /* Fixed point cache (speeds repeated operations against same private key) + */ #undef FP_ECC //#define FP_ECC #ifdef FP_ECC @@ -491,7 +493,8 @@ extern "C" { #define WC_NO_HASHDRBG /* Bypass P-RNG and use only HW RNG */ - extern int custom_rand_generate_block(unsigned char* output, unsigned int sz); + extern int custom_rand_generate_block(unsigned char* output, + unsigned int sz); #undef CUSTOM_RAND_GENERATE_BLOCK #define CUSTOM_RAND_GENERATE_BLOCK custom_rand_generate_block #endif @@ -658,6 +661,9 @@ extern "C" { #undef NO_TESTSUITE_MAIN_DRIVER #define NO_TESTSUITE_MAIN_DRIVER + + #undef WOLFSSL_NO_ASN_STRICT + #define WOLFSSL_NO_ASN_STRICT #endif /* END Customer specified options */ #ifdef __cplusplus