mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-10-16 17:57:44 -04:00
* deleted old version wolfSSL before updating * updated wolfSSL to the latest version(v4.4.0) * updated wolfSSL to the latest version(v4.4.0) * added macros for timing resistance * Add wolfSSL-FIPS-Ready to Demo and Source * Add wolfSSL-FIPS-Ready to Demo and Source * Update README_wolfSSL_FIPS_Ready.md * Remove unused files * Update to wolfSSL-4.5.0-FIPS-Ready * Increase FIPS version number for the default * Update wolfSSL to the latest version(v.4.5.0) * Fix version number * Fix comments from github Co-authored-by: RichardBarry <3073890+RichardBarry@users.noreply.github.com> Co-authored-by: Ming Yue <mingyue86010@gmail.com> Co-authored-by: Aniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com> Co-authored-by: Cobus van Eeden <35851496+cobusve@users.noreply.github.com> Co-authored-by: Alfred Gedeon <alfred2g@hotmail.com>
26 lines
898 B
C
26 lines
898 B
C
/* x509.h for openssl */
|
|
|
|
#include <wolfssl/openssl/ssl.h>
|
|
#include <wolfssl/openssl/crypto.h>
|
|
#include <wolfssl/openssl/dh.h>
|
|
#include <wolfssl/openssl/ec.h>
|
|
#include <wolfssl/openssl/ecdsa.h>
|
|
|
|
/* wolfSSL_X509_print_ex flags */
|
|
#define X509_FLAG_COMPAT (0UL)
|
|
#define X509_FLAG_NO_HEADER (1UL << 0)
|
|
#define X509_FLAG_NO_VERSION (1UL << 1)
|
|
#define X509_FLAG_NO_SERIAL (1UL << 2)
|
|
#define X509_FLAG_NO_SIGNAME (1UL << 3)
|
|
#define X509_FLAG_NO_ISSUER (1UL << 4)
|
|
#define X509_FLAG_NO_VALIDITY (1UL << 5)
|
|
#define X509_FLAG_NO_SUBJECT (1UL << 6)
|
|
#define X509_FLAG_NO_PUBKEY (1UL << 7)
|
|
#define X509_FLAG_NO_EXTENSIONS (1UL << 8)
|
|
#define X509_FLAG_NO_SIGDUMP (1UL << 9)
|
|
#define X509_FLAG_NO_AUX (1UL << 10)
|
|
#define X509_FLAG_NO_ATTRIBUTES (1UL << 11)
|
|
#define X509_FLAG_NO_IDS (1UL << 12)
|
|
|
|
#define XN_FLAG_FN_SN 0
|
|
#define XN_FLAG_SEP_CPLUS_SPC 2
|