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 | 17.1k | { |
12 | 17.1k | try |
13 | 17.1k | { |
14 | 17.1k | std::vector<uint8_t> v(in, in + len); |
15 | 17.1k | Botan::TLS::Client_Hello_12 ch(v); // TODO: We might want to do that for TLS 1.3 as well |
16 | 17.1k | } |
17 | 17.1k | catch(Botan::Exception& e) {} |
18 | 17.1k | } |