Coverage Report

Created: 2022-09-23 06:05

/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
5.65k
   {
11
5.65k
   if(len > 2*384/8)
12
94
      return;
13
5.56k
   static Botan::EC_Group p384("secp384r1");
14
5.56k
   return check_ecc_math(p384, in, len);
15
5.65k
   }