From a075a997291f90591aba6553f6eaec8f9f97239e Mon Sep 17 00:00:00 2001 From: Jeremiah Mackey Date: Wed, 6 May 2026 15:46:59 +0000 Subject: [PATCH] evp: fix sm4-ctr debug message --- wolfcrypt/src/evp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/src/evp.c b/wolfcrypt/src/evp.c index 47b6010da1..2bf66506b3 100644 --- a/wolfcrypt/src/evp.c +++ b/wolfcrypt/src/evp.c @@ -8860,7 +8860,7 @@ void wolfSSL_EVP_init(void) #endif #ifdef WOLFSSL_SM4_CTR case WC_SM4_CTR_TYPE : - WOLFSSL_MSG("AES CTR"); + WOLFSSL_MSG("Sm4 CTR"); ret = wc_Sm4CtrEncrypt(&ctx->cipher.sm4, dst, src, len); if (ret == 0) ret = (int)len;