blob: 2bc5ebe3353829769cf9f91fd4292fc82b6a7793 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* (C) 2015,2016 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "driver.h"
#include <botan/bigint.h>
#include <botan/numthry.h>
void fuzz(const uint8_t in[], size_t len)
{
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);
}
|