From 1d1a87b0a27f20f56082ce268b97317ac0e7d1b4 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Thu, 3 Jul 2025 10:21:30 -0500 Subject: [PATCH] wolfssl/wolfcrypt/tfm.h: fix arg names in fp_to_unsigned_bin_len_ct() prototype to match tfm.c (fixes readability-inconsistent-declaration-parameter-name in clang-tidy-fips-140-3-defaults etc.). --- wolfssl/wolfcrypt/tfm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfssl/wolfcrypt/tfm.h b/wolfssl/wolfcrypt/tfm.h index ffec06db1..c54d8b17c 100644 --- a/wolfssl/wolfcrypt/tfm.h +++ b/wolfssl/wolfcrypt/tfm.h @@ -725,7 +725,7 @@ int fp_leading_bit(fp_int *a); int fp_unsigned_bin_size(const fp_int *a); int fp_read_unsigned_bin(fp_int *a, const unsigned char *b, int c); int fp_to_unsigned_bin(fp_int *a, unsigned char *b); -int fp_to_unsigned_bin_len_ct(fp_int *a, unsigned char *b, int c); +int fp_to_unsigned_bin_len_ct(fp_int *a, unsigned char *out, int outSz); int fp_to_unsigned_bin_len(fp_int *a, unsigned char *b, int c); int fp_to_unsigned_bin_at_pos(int x, fp_int *t, unsigned char *b);