mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-05 16:50:48 +02:00
Address copilot feedback
This commit is contained in:
+1
-1
@@ -1653,7 +1653,7 @@ fi
|
||||
AC_ARG_ENABLE([tailscale],
|
||||
[AS_HELP_STRING([--enable-tailscale],[Enable Tailscale build dependencies (default: disabled)])],
|
||||
[ ENABLED_TAILSCALE=$enableval ],
|
||||
[ ENABLED_TAILSCALE=no ]
|
||||
[ ENABLED_TAILSCALE=${enable_tailscale:-no} ]
|
||||
)
|
||||
if test "$ENABLED_TAILSCALE" = "yes"
|
||||
then
|
||||
|
||||
+10
-10
@@ -412,6 +412,10 @@ enum Extensions_Sum {
|
||||
ISSUE_ALT_NAMES_OID = 132, /* 2.5.29.18 */
|
||||
/* 0x2b,0x06,0x01,0x05,0x05,0x07,0x01,0x18 */
|
||||
TLS_FEATURE_OID = 92, /* 1.3.6.1.5.5.7.1.24 */
|
||||
#ifdef WOLFSSL_ACME_OID
|
||||
/* 0x2b,0x06,0x01,0x05,0x05,0x07,0x01,0x1f */
|
||||
ACME_IDENTIFIER_OID = 99, /* 1.3.6.1.5.5.7.1.31 */
|
||||
#endif
|
||||
/* 0x2b,0x06,0x01,0x05,0x05,0x07,0x08,0x07 */
|
||||
DNS_SRV_OID = 82, /* 1.3.6.1.5.5.7.8.7 */
|
||||
/* 0x60,0x86,0x48,0x01,0x86,0xf8,0x42,0x01,0x01 */
|
||||
@@ -431,11 +435,7 @@ enum Extensions_Sum {
|
||||
/* 0x55,0x1d,0x49 */
|
||||
ALT_SIG_ALG_OID = 187, /* 2.5.29.73 */
|
||||
/* 0x55,0x1d,0x4a */
|
||||
ALT_SIG_VAL_OID = 188, /* 2.5.29.74 */
|
||||
#ifdef WOLFSSL_ACME_OID
|
||||
/* 0x2b,0x06,0x01,0x05,0x05,0x07,0x01,0x1f */
|
||||
ACME_IDENTIFIER_OID = 99 /* 1.3.6.1.5.5.7.1.31 */
|
||||
#endif
|
||||
ALT_SIG_VAL_OID = 188 /* 2.5.29.74 */
|
||||
#else
|
||||
/* 0x55,0x1d,0x13 */
|
||||
BASIC_CA_OID = 0x7fec1daa, /* 2.5.29.19 */
|
||||
@@ -473,6 +473,10 @@ enum Extensions_Sum {
|
||||
ISSUE_ALT_NAMES_OID = 0x7fed1daa, /* 2.5.29.18 */
|
||||
/* 0x2b,0x06,0x01,0x05,0x05,0x07,0x01,0x18 */
|
||||
TLS_FEATURE_OID = 0x1d00012e, /* 1.3.6.1.5.5.7.1.24 */
|
||||
#ifdef WOLFSSL_ACME_OID
|
||||
/* 0x2b,0x06,0x01,0x05,0x05,0x07,0x01,0x1f */
|
||||
ACME_IDENTIFIER_OID = 0x1a00012e, /* 1.3.6.1.5.5.7.1.31 */
|
||||
#endif
|
||||
/* 0x2b,0x06,0x01,0x05,0x05,0x07,0x08,0x07 */
|
||||
DNS_SRV_OID = 0x0209012e, /* 1.3.6.1.5.5.7.8.7 */
|
||||
/* 0x60,0x86,0x48,0x01,0x86,0xf8,0x42,0x01,0x01 */
|
||||
@@ -492,11 +496,7 @@ enum Extensions_Sum {
|
||||
/* 0x55,0x1d,0x49 */
|
||||
ALT_SIG_ALG_OID = 0x7fb61daa, /* 2.5.29.73 */
|
||||
/* 0x55,0x1d,0x4a */
|
||||
ALT_SIG_VAL_OID = 0x7fb51daa, /* 2.5.29.74 */
|
||||
#ifdef WOLFSSL_ACME_OID
|
||||
/* 0x2b,0x06,0x01,0x05,0x05,0x07,0x01,0x1f */
|
||||
ACME_IDENTIFIER_OID = 0x1a00012e /* 1.3.6.1.5.5.7.1.31 */
|
||||
#endif
|
||||
ALT_SIG_VAL_OID = 0x7fb51daa /* 2.5.29.74 */
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
@@ -558,6 +558,11 @@
|
||||
#define HAVE_OID_DECODING
|
||||
#endif /* WOLFSSL_DUAL_ALG_CERTS */
|
||||
|
||||
/* RFC 8737 id-pe-acmeIdentifier (TLS-ALPN-01) requires SHA-256. */
|
||||
#if defined(WOLFSSL_ACME_OID) && defined(NO_SHA256)
|
||||
#undef WOLFSSL_ACME_OID
|
||||
#endif
|
||||
|
||||
|
||||
#if defined(_WIN32) && !defined(_M_X64) && \
|
||||
defined(HAVE_AESGCM) && defined(WOLFSSL_AESNI)
|
||||
|
||||
Reference in New Issue
Block a user