David Garske 4f91d60d22 Fixes for build issues without `OPENSSL_EXTRA` defined. | 4 anos atrás | |
---|---|---|
.. | ||
README.md | 4 anos atrás | |
include.am | 4 anos atrás | |
user_settings_all.h | 4 anos atrás | |
user_settings_min_ecc.h | 4 anos atrás | |
user_settings_wolfboot_keytools.h | 4 anos atrás |
Example wolfSSL configuration file templates for use when autoconf is not available, such as building with a custom IDE.
user_settings_all.h
: This is wolfSSL with all features enabled. Equivalent to ./configure --enable-all
.user_settings_min_ecc.h
: This is ECC and SHA-256 only. For ECC verify only add BUILD_VERIFY_ONLY
.user_settings_wolfboot_keytools.h
: This from wolfBoot tools/keytools and is ECC, RSA, ED25519 and ChaCha20.user_settings.h
.WOLFSSL_USER_SETTINGS
to your project.#include <wolfssl/wolfcrypt/settings.h>
prior to any other wolfSSL headers in your application.To use these with autoconf:
user_settings.h
../configure --enable-usersettings --disable-examples && make