blob: ebc6001971bbe7a10cd242901acb2e9d224e8bc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/*
* (C) 2018,2020 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "fuzzers.h"
#include <botan/numthry.h>
#include <botan/reducer.h>
#include <botan/divide.h>
void fuzz(const uint8_t in[], size_t len)
{
static const size_t max_bits = 4096;
if(len <= 4)
return;
if(len > 2*(max_bits/8))
return;
const size_t x_len = 2 * ((len + 2) / 3);
Botan::BigInt x = Botan::BigInt::decode(in, x_len);
const Botan::BigInt p = Botan::BigInt::decode(in + x_len, len - x_len);
if(p.is_zero())
return;
const size_t x_bits = x.bits();
if(x_bits % 8 == 0 && x_bits / 8 == x_len)
x.flip_sign();
const Botan::BigInt ref = x % p;
const Botan::Modular_Reducer mod_p(p);
const Botan::BigInt z = mod_p.reduce(x);
const Botan::BigInt ct = ct_modulo(x, p);
if(ref != z || ref != ct)
{
FUZZER_WRITE_AND_CRASH("X = " << x << "\n"
<< "P = " << p << "\n"
<< "Barrett = " << z << "\n"
<< "Ct = " << ct << "\n"
<< "Ref = " << ref << "\n");
}
}
|