From 13fb6b83cd7d404e950b7da67d5bba6df35152db Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Tue, 22 Jul 2025 16:38:13 -0400 Subject: [PATCH] Update style per code review comments --- wolfcrypt/src/pkcs7.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wolfcrypt/src/pkcs7.c b/wolfcrypt/src/pkcs7.c index 57eaec484..68ff9f99d 100644 --- a/wolfcrypt/src/pkcs7.c +++ b/wolfcrypt/src/pkcs7.c @@ -6816,8 +6816,8 @@ static int PKCS7_GenerateContentEncryptionKey(wc_PKCS7* pkcs7, word32 len) /* wrap CEK (content encryption key) with KEK, returns output size (> 0) on * success, < 0 on error */ -static int wc_PKCS7_KeyWrap(const wc_PKCS7 * pkcs7, byte const * cek, - word32 cekSz, byte const * kek, word32 kekSz, byte * out, word32 outSz, +static int wc_PKCS7_KeyWrap(const wc_PKCS7 * pkcs7, const byte * cek, + word32 cekSz, const byte * kek, word32 kekSz, byte * out, word32 outSz, int keyWrapAlgo, int direction) { int ret = 0;