Coverage Report

Created: 2019-09-11 14:12

/src/botan/src/fuzzer/ecc_p384.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
#include "fuzzers.h"
7
#include "ecc_helper.h"
8
9
void fuzz(const uint8_t in[], size_t len)
10
1.94k
   {
11
1.94k
   if(len > 2*384/8)
12
102
      return;
13
1.84k
   static Botan::EC_Group p384("secp384r1");
14
1.84k
   return check_ecc_math(p384, in, len);
15
1.84k
   }