Coverage Report

Created: 2020-09-16 07:52

/src/botan/src/fuzzer/redc_p256.cpp
Line
Count
Source
1
/*
2
* (C) 2015,2016 Jack Lloyd
3
*
4
* Botan is released under the Simplified BSD License (see license.txt)
5
*/
6
7
#include "fuzzers.h"
8
#include <botan/reducer.h>
9
#include <botan/curve_nistp.h>
10
11
void fuzz(const uint8_t in[], size_t len)
12
356
   {
13
356
   if(len > 2*256/8)
14
127
      return;
15
229
16
229
   static const Botan::BigInt& prime = Botan::prime_p256();
17
229
   static const Botan::BigInt prime_2 = prime * prime;
18
229
   static Botan::Modular_Reducer prime_redc(prime);
19
229
20
229
   Botan::BigInt input = Botan::BigInt::decode(in, len);
21
229
22
229
   if(input < prime_2)
23
223
      {
24
223
      const Botan::BigInt ref = prime_redc.reduce(input);
25
223
26
223
      Botan::secure_vector<Botan::word> ws;
27
223
      Botan::redc_p256(input, ws);
28
223
29
223
      FUZZER_ASSERT_EQUAL(ref, input);
30
223
      }
31
229
   }