• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

randombit / botan / 22281854509

22 Feb 2026 05:28PM UTC coverage: 90.334% (+0.001%) from 90.333%
22281854509

Pull #5382

github

web-flow
Merge d4e94c67b into 516662327
Pull Request #5382: Generalize XMSS_Index_Registry and use it for LMS as well

103017 of 114040 relevant lines covered (90.33%)

11826379.47 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

94.64
/src/fuzzer/invert.cpp
1
/*
2
* (C) 2015,2016,2020 Jack Lloyd
3
*
4
* Botan is released under the Simplified BSD License (see license.txt)
5
*/
6
#include "fuzzers.h"
7

8
#include <botan/numthry.h>
9

10
namespace {
11

12
Botan::BigInt ref_inverse_mod(const Botan::BigInt& n, const Botan::BigInt& mod) {
98✔
13
   if(n == 0 || mod < 2) {
196✔
14
      return 0;
×
15
   }
16
   if(n.is_even() && mod.is_even()) {
242✔
17
      return 0;
23✔
18
   }
19
   Botan::BigInt u = mod;
75✔
20
   Botan::BigInt v = n;
75✔
21
   Botan::BigInt A = 1;
75✔
22
   Botan::BigInt B = 0;
75✔
23
   Botan::BigInt C = 0;
75✔
24
   Botan::BigInt D = 1;
75✔
25

26
   while(u.is_nonzero()) {
41,739✔
27
      const size_t u_zero_bits = Botan::low_zero_bits(u);
27,750✔
28
      u >>= u_zero_bits;
27,750✔
29
      for(size_t i = 0; i != u_zero_bits; ++i) {
55,703✔
30
         if(A.is_odd() || B.is_odd()) {
27,953✔
31
            A += n;
13,947✔
32
            B -= mod;
13,947✔
33
         }
34
         A >>= 1;
27,953✔
35
         B >>= 1;
27,953✔
36
      }
37

38
      const size_t v_zero_bits = Botan::low_zero_bits(v);
27,750✔
39
      v >>= v_zero_bits;
27,750✔
40
      for(size_t i = 0; i != v_zero_bits; ++i) {
55,330✔
41
         if(C.is_odd() || D.is_odd()) {
27,580✔
42
            C += n;
13,891✔
43
            D -= mod;
13,891✔
44
         }
45
         C >>= 1;
27,580✔
46
         D >>= 1;
27,580✔
47
      }
48

49
      if(u >= v) {
27,750✔
50
         u -= v;
13,914✔
51
         A -= C;
13,914✔
52
         B -= D;
13,914✔
53
      } else {
54
         v -= u;
13,836✔
55
         C -= A;
13,836✔
56
         D -= B;
13,836✔
57
      }
58
   }
59

60
   if(v != 1) {
75✔
61
      return 0;  // no modular inverse
17✔
62
   }
63

64
   while(D.is_negative()) {
104✔
65
      D += mod;
46✔
66
   }
67
   while(D >= mod) {
58✔
68
      D -= mod;
×
69
   }
70

71
   return D;
58✔
72
}
75✔
73

74
}  // namespace
75

76
void fuzz(std::span<const uint8_t> in) {
100✔
77
   static const size_t max_bits = 4096;
100✔
78

79
   if(in.size() > 2 * max_bits / 8) {
100✔
80
      return;
2✔
81
   }
82

83
   const Botan::BigInt x = Botan::BigInt::from_bytes(in.subspan(0, in.size() / 2));
100✔
84
   const Botan::BigInt mod = Botan::BigInt::from_bytes(in.subspan(in.size() / 2, in.size() - in.size() / 2));
100✔
85

86
   if(mod < 2) {
100✔
87
      return;
2✔
88
   }
89

90
   const Botan::BigInt lib = Botan::inverse_mod(x, mod);
98✔
91
   const Botan::BigInt ref = ref_inverse_mod(x, mod);
98✔
92

93
   if(ref != lib) {
98✔
94
      FUZZER_WRITE_AND_CRASH("X = " << x.to_hex_string() << "\n"
×
95
                                    << "Mod = " << mod.to_hex_string() << "\n"
96
                                    << "GCD(X,Mod) = " << gcd(x, mod).to_hex_string() << "\n"
97
                                    << "RefInv(X,Mod) = " << ref.to_hex_string() << "\n"
98
                                    << "LibInv(X,Mod)  = " << lib.to_hex_string() << "\n"
99
                                    << "RefCheck = " << ((x * ref) % mod).to_hex_string() << "\n"
100
                                    << "LibCheck  = " << ((x * lib) % mod).to_hex_string() << "\n");
101
   }
102
}
100✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc