Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

20240822-fixes #7892

Merged
merged 1 commit into from
Aug 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/api.c
Original file line number Diff line number Diff line change
Expand Up @@ -70719,6 +70719,9 @@ static int test_wolfssl_EVP_chacha20_poly1305(void)
EVP_CIPHER_CTX* ctx = NULL;
int outSz;

XMEMSET(key, 0, sizeof(key));
XMEMSET(iv, 0, sizeof(iv));

/* Encrypt. */
ExpectNotNull((ctx = EVP_CIPHER_CTX_new()));
ExpectIntEQ(EVP_EncryptInit_ex(ctx, EVP_chacha20_poly1305(), NULL, NULL,
Expand Down
3 changes: 1 addition & 2 deletions wolfssl/openssl/asn1.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,7 @@ struct WOLFSSL_ASN1_ITEM {
typedef struct WOLFSSL_ASN1_TEMPLATE WOLFSSL_ASN1_TEMPLATE;
typedef struct WOLFSSL_ASN1_ITEM WOLFSSL_ASN1_ITEM;

static WC_MAYBE_UNUSED const byte ASN1_BIT_STRING_FIRST_BYTE = ASN_BIT_STRING;

#define ASN1_BIT_STRING_FIRST_BYTE ASN_BIT_STRING
#define ASN1_TFLG_EXPLICIT (0x1 << 0)
#define ASN1_TFLG_SEQUENCE_OF (0x1 << 1)
#define ASN1_TFLG_IMPTAG (0x1 << 2)
Expand Down