mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-01-26 22:12:20 +01:00
* Store in extensions the full octet string Store in WOLFSSL_X509_EXTENSION.value always the full contents of the OCTET STRING of the extension, instead of different type of data depending on the type of extension. Previously this was only done for unknown extensions. * Avoid local variables in 'DecodeExtKeyUsageInternal' There is a great performance loss on configs using 'WOLFSSL_NO_MALLOC', 'WOLFSSL_STATIC_MEMORY' and 'USE_FAST_MATH' if function 'DecodeExtKeyUsageInternal' uses intermediate variables. This can be observed running the Zephyr test 'wolfssl_test/prj-no-malloc.conf'. Avoid using intermediate variables, and use raw pointers to the final destination instead. * Add missing calls to 'FreeDecodedCert' * Return error code from 'wolfSSL_ASN1_STRING_into_old_ext_fmt' * Fix lines larger than 80 * Allow NULL parameters for 'DecodeAuthKeyId' * Add comment explaining build option '--enable-old-extdata-fmt' * Test full OCTET STRING in tests/api.c * wolfSSL_X509V3_EXT_d2i: Honor 'WOLFSSL_SMALL_STACK' * zephyr/wolfssl_test_no_malloc: Increase test timeout * wolfSSL_X509V3_EXT_d2i: Extract repeated code into common part * wolfcrypt: Remove 'WOLFSSL_LOCAL' from .c files * wolfcrypt: Change location of functions to make diff easier
Before creating any new configure files (.conf) read the CONF_FILES_README.md