14 lines
419 B
C
14 lines
419 B
C
/* Demo user_settings.h for CRA Kit embedded SBOM generation.
|
|
* Illustrative only, NOT a security-hardened production configuration.
|
|
* Production: replace with your project's user_settings.h (or point gen-sbom at it). */
|
|
#ifndef CRA_KIT_USER_SETTINGS_H
|
|
#define CRA_KIT_USER_SETTINGS_H
|
|
|
|
#define WOLFSSL_TLS13
|
|
#define HAVE_AESGCM
|
|
#define HAVE_ECC
|
|
#define NO_PSK
|
|
#define NO_OLD_TLS
|
|
|
|
#endif /* CRA_KIT_USER_SETTINGS_H */
|