Coverage Report

Created: 2020-05-23 13:54

/src/botan/src/fuzzer/tls_client_hello.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/tls_messages.h>
9
10
void fuzz(const uint8_t in[], size_t len)
11
13.2k
   {
12
13.2k
   try
13
13.2k
      {
14
13.2k
      std::vector<uint8_t> v(in, in + len);
15
13.2k
      Botan::TLS::Client_Hello ch(v);
16
13.2k
      }
17
13.2k
   catch(Botan::Exception& e) {}
18
13.2k
   }