summaryrefslogtreecommitdiffstats
path: root/comm/third_party/botan/src/fuzzer/bn_sqr.cpp
blob: f507c4a79c32096fbb70ba5da58b25ebbaf0c301 (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
/*
* (C) 2015,2016 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/

#include "fuzzers.h"

#include <botan/bigint.h>
#include <botan/numthry.h>

void fuzz(const uint8_t in[], size_t len)
   {
   if(len > 8192/8)
      return;

   Botan::BigInt x = Botan::BigInt::decode(in, len);

   Botan::BigInt x_sqr = square(x);
   Botan::BigInt x_mul = x * x;

   FUZZER_ASSERT_EQUAL(x_sqr, x_mul);
   }