Ignore:
Timestamp:
Jun 22, 2021, 9:00:19 PM (3 years ago)
Author:
coas-nagasima
Message:

WolfSSLとAzure IoT SDKを更新

Location:
azure_iot_hub_f767zi/trunk/wolfssl-4.7.0
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • azure_iot_hub_f767zi/trunk/wolfssl-4.7.0/wolfssl/openssl/x509.h

    r457 r464  
    66#include <wolfssl/openssl/ec.h>
    77#include <wolfssl/openssl/ecdsa.h>
     8#include <wolfssl/openssl/pkcs7.h>
    89
    910/* wolfSSL_X509_print_ex flags */
     
    2425
    2526#define XN_FLAG_FN_SN           0
    26 #define XN_FLAG_SEP_CPLUS_SPC   2
     27#define XN_FLAG_ONELINE         0
     28#define XN_FLAG_COMPAT          0
     29#define XN_FLAG_RFC2253         1
     30#define XN_FLAG_SEP_COMMA_PLUS  (1 << 16)
     31#define XN_FLAG_SEP_CPLUS_SPC   (2 << 16)
     32#define XN_FLAG_SEP_SPLUS_SPC   (3 << 16)
     33#define XN_FLAG_SEP_MULTILINE   (4 << 16)
     34#define XN_FLAG_SEP_MASK        (0xF << 16)
     35#define XN_FLAG_DN_REV          (1 << 20)
     36#define XN_FLAG_FN_LN           (1 << 21)
     37#define XN_FLAG_FN_OID          (2 << 21)
     38#define XN_FLAG_FN_NONE         (3 << 21)
     39#define XN_FLAG_FN_MASK         (3 << 21)
     40#define XN_FLAG_SPC_EQ          (1 << 23)
     41#define XN_FLAG_DUMP_UNKNOWN_FIELDS (1 << 24)
     42#define XN_FLAG_FN_ALIGN        (1 << 25)
     43
     44#define XN_FLAG_MULTILINE       0xFFFF
Note: See TracChangeset for help on using the changeset viewer.