mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
21 lines
732 B
C
21 lines
732 B
C
/* x509.h for openssl */
|
|
|
|
#include <libwolfssl/openssl/ssl.h>
|
|
#include <libwolfssl/openssl/dh.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)
|