Skip to content

Commit 1d1a87b

Browse files
committed
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.).
1 parent bdd2056 commit 1d1a87b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wolfssl/wolfcrypt/tfm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -725,7 +725,7 @@ int fp_leading_bit(fp_int *a);
725725
int fp_unsigned_bin_size(const fp_int *a);
726726
int fp_read_unsigned_bin(fp_int *a, const unsigned char *b, int c);
727727
int fp_to_unsigned_bin(fp_int *a, unsigned char *b);
728-
int fp_to_unsigned_bin_len_ct(fp_int *a, unsigned char *b, int c);
728+
int fp_to_unsigned_bin_len_ct(fp_int *a, unsigned char *out, int outSz);
729729
int fp_to_unsigned_bin_len(fp_int *a, unsigned char *b, int c);
730730
int fp_to_unsigned_bin_at_pos(int x, fp_int *t, unsigned char *b);
731731

0 commit comments

Comments
 (0)