Skip to content

Commit

Permalink
fixup! Add ossl_bn_is_word_fixed_top()
Browse files Browse the repository at this point in the history
  • Loading branch information
t8m committed May 8, 2024
1 parent b514513 commit 6a26066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/bn/bn_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ int BN_is_word(const BIGNUM *a, const BN_ULONG w)
return BN_abs_is_word(a, w) && (!w || !a->neg);
}

int ossl_bn_is_word_fixed_top(const BIGNUM *a, const BN_ULONG w)
int ossl_bn_is_word_fixed_top(const BIGNUM *a, BN_ULONG w)
{
int res, i;
const BN_ULONG *ap = a->d;
Expand Down

0 comments on commit 6a26066

Please sign in to comment.