blob: 212a313a82e97926ffb093cfea5471b31d5b89be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/*
* (C) 2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "tests.h"
#include <chrono>
#include <iostream>
#if defined(BOTAN_HAS_X509_CERTIFICATES)
#include <botan/x509cert.h>
#include <botan/x509_crl.h>
#include <botan/internal/filesystem.h>
#include <botan/base64.h>
#endif
namespace {
size_t test_x509_fuzz()
{
size_t fails = 0;
#if defined(BOTAN_HAS_X509_CERTIFICATES)
size_t tests = 0;
const std::string fuzz_data = TEST_DATA_DIR "/fuzz";
for(auto vec: Botan::get_files_recursive(fuzz_data + "/x509"))
{
++tests;
auto start = std::chrono::system_clock::now();
try
{
// TODO: check for memory consumption?
Botan::X509_Certificate cert(vec);
}
catch(std::exception& e)
{
//std::cout << e.what() << "\n";
}
auto end = std::chrono::system_clock::now();
uint64_t duration = std::chrono::duration_cast<std::chrono::milliseconds>(end - start).count();
if(duration > 100)
{
std::cout << "Fuzzer test " << vec << " took " << duration << " ms" << std::endl;
}
}
test_report("Fuzzer checks", tests, fails);
#endif
return fails;
}
}
size_t test_fuzzer()
{
size_t fails = 0;
fails += test_x509_fuzz();
return fails;
}
|