mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2025-07-31 11:17:29 +02:00
2
.github/workflows/codespell.yml
vendored
2
.github/workflows/codespell.yml
vendored
@ -27,4 +27,4 @@ jobs:
|
|||||||
# The exclude_file contains lines of code that should be ignored. This is useful for individual lines which have non-words that can safely be ignored.
|
# The exclude_file contains lines of code that should be ignored. This is useful for individual lines which have non-words that can safely be ignored.
|
||||||
exclude_file: '.codespellexcludelines'
|
exclude_file: '.codespellexcludelines'
|
||||||
# To skip files entirely from being processed, add it to the following list:
|
# To skip files entirely from being processed, add it to the following list:
|
||||||
skip: '*.cproject,*.der,*.mtpj,*.pem,*.vcxproj,.git,*.launch,*.scfg,./IDE/Renesas/cs+/Projects/t4_demo/README_jp.txt'
|
skip: '*.cproject,*.der,*.mtpj,*.pem,*.vcxproj,.git,*.launch,*.scfg,*/README_jp.txt'
|
||||||
|
@ -7388,7 +7388,7 @@ then
|
|||||||
ENABLED_WOLFSSH="yes"
|
ENABLED_WOLFSSH="yes"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "x$ENABLED_OPENSSLEXTRA" = "xno" && test "x$ENABLED_OPENSSLCOEXIST" = "xno"
|
if test "x$ENABLED_OPENSSLEXTRA" = "xno"
|
||||||
then
|
then
|
||||||
ENABLED_OPENSSLEXTRA="yes"
|
ENABLED_OPENSSLEXTRA="yes"
|
||||||
fi
|
fi
|
||||||
|
@ -71021,10 +71021,10 @@ static int test_wolfSSL_SESSION(void)
|
|||||||
char buf[64] = {0};
|
char buf[64] = {0};
|
||||||
word32 bufSz = (word32)sizeof(buf);
|
word32 bufSz = (word32)sizeof(buf);
|
||||||
|
|
||||||
ExpectIntEQ(SSL_SUCCESS,
|
ExpectIntEQ(WOLFSSL_SUCCESS,
|
||||||
wolfSSL_set_SessionTicket(ssl, (byte *)ticket,
|
wolfSSL_set_SessionTicket(ssl, (byte *)ticket,
|
||||||
(word32)XSTRLEN(ticket)));
|
(word32)XSTRLEN(ticket)));
|
||||||
ExpectIntEQ(SSL_SUCCESS,
|
ExpectIntEQ(WOLFSSL_SUCCESS,
|
||||||
wolfSSL_get_SessionTicket(ssl, (byte *)buf, &bufSz));
|
wolfSSL_get_SessionTicket(ssl, (byte *)buf, &bufSz));
|
||||||
ExpectStrEQ(ticket, buf);
|
ExpectStrEQ(ticket, buf);
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,7 @@ static const ASNItem <template>[] = {
|
|||||||
/* <ITEM_0> */ { <depth>, <ASN Type>, <constructed>, <header>, <optional> },
|
/* <ITEM_0> */ { <depth>, <ASN Type>, <constructed>, <header>, <optional> },
|
||||||
...
|
...
|
||||||
};
|
};
|
||||||
/* Named indeces for <template>. */
|
/* Named indices for <template>. */
|
||||||
enum {
|
enum {
|
||||||
<TEMPLATE>_<ITEM_0> = 0,
|
<TEMPLATE>_<ITEM_0> = 0,
|
||||||
<TEMPLATE>_<ITEM_1>,
|
<TEMPLATE>_<ITEM_1>,
|
||||||
|
Reference in New Issue
Block a user