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

randombit / botan / 19509208918

19 Nov 2025 04:46PM UTC coverage: 91.958%. Remained the same
19509208918

Pull #5095

github

web-flow
Merge 3368ce316 into 258d0fe77
Pull Request #5095: Move documentation to botan3.py

102094 of 111023 relevant lines covered (91.96%)

12519957.18 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;
19✔
18
   }
19
   Botan::BigInt u = mod;
79✔
20
   Botan::BigInt v = n;
79✔
21
   Botan::BigInt A = 1;
79✔
22
   Botan::BigInt B = 0;
79✔
23
   Botan::BigInt C = 0;
79✔
24
   Botan::BigInt D = 1;
79✔
25

26
   while(u.is_nonzero()) {
43,155✔
27
      const size_t u_zero_bits = Botan::low_zero_bits(u);
28,672✔
28
      u >>= u_zero_bits;
28,672✔
29
      for(size_t i = 0; i != u_zero_bits; ++i) {
57,518✔
30
         if(A.is_odd() || B.is_odd()) {
28,846✔
31
            A += n;
14,604✔
32
            B -= mod;
14,604✔
33
         }
34
         A >>= 1;
28,846✔
35
         B >>= 1;
28,846✔
36
      }
37

38
      const size_t v_zero_bits = Botan::low_zero_bits(v);
28,672✔
39
      v >>= v_zero_bits;
28,672✔
40
      for(size_t i = 0; i != v_zero_bits; ++i) {
56,888✔
41
         if(C.is_odd() || D.is_odd()) {
28,216✔
42
            C += n;
14,194✔
43
            D -= mod;
14,194✔
44
         }
45
         C >>= 1;
28,216✔
46
         D >>= 1;
28,216✔
47
      }
48

49
      if(u >= v) {
28,672✔
50
         u -= v;
14,404✔
51
         A -= C;
14,404✔
52
         B -= D;
14,404✔
53
      } else {
54
         v -= u;
14,268✔
55
         C -= A;
14,268✔
56
         D -= B;
14,268✔
57
      }
58
   }
59

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

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

71
   return D;
70✔
72
}
79✔
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
   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