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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
/*
* (C) 2018 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include "fuzzers.h"
#include <botan/oaep.h>
#include <botan/hex.h>
namespace {
Botan::secure_vector<uint8_t>
ref_oaep_unpad(uint8_t& valid_mask,
const uint8_t in[], size_t len,
const Botan::secure_vector<uint8_t>& Phash)
{
const size_t hlen = Phash.size();
if(len < 2*hlen + 1)
{
return Botan::secure_vector<uint8_t>();
}
for(size_t i = hlen; i != 2*hlen; ++i)
{
if(in[i] != Phash[i-hlen])
{
return Botan::secure_vector<uint8_t>();
}
}
for(size_t i = 2*hlen; i != len; ++i)
{
if(in[i] != 0x00 && in[i] != 0x01)
{
return Botan::secure_vector<uint8_t>();
}
if(in[i] == 0x01)
{
valid_mask = 0xFF;
return Botan::secure_vector<uint8_t>(in + i + 1, in + len);
}
}
return Botan::secure_vector<uint8_t>();
}
inline bool all_zeros(const Botan::secure_vector<uint8_t>& v)
{
for(size_t i = 0; i != v.size(); ++i)
{
if(v[i] != 0)
return false;
}
return true;
}
}
void fuzz(const uint8_t in[], size_t len)
{
static const Botan::secure_vector<uint8_t> Phash = { 1, 2, 3, 4 };
uint8_t lib_valid_mask = 0;
const Botan::secure_vector<uint8_t> lib_output = Botan::oaep_find_delim(lib_valid_mask, in, len, Phash);
FUZZER_ASSERT_TRUE(lib_valid_mask == 0 || lib_valid_mask == 0xFF);
uint8_t ref_valid_mask = 0;
const Botan::secure_vector<uint8_t> ref_output = ref_oaep_unpad(ref_valid_mask, in, len, Phash);
FUZZER_ASSERT_TRUE(ref_valid_mask == 0 || ref_valid_mask == 0xFF);
if(ref_valid_mask == 0xFF && lib_valid_mask == 0x00)
{
FUZZER_WRITE_AND_CRASH("Ref accepted but library rejected, output " << Botan::hex_encode(ref_output) << "\n");
}
else if(ref_valid_mask == 0x00 && lib_valid_mask == 0xFF)
{
FUZZER_WRITE_AND_CRASH("Lib accepted but ref rejected, output = " << Botan::hex_encode(lib_output) << "\n");
}
if(ref_valid_mask == 0x00)
{
FUZZER_ASSERT_TRUE(all_zeros(ref_output));
}
if(lib_valid_mask == 0x00)
{
FUZZER_ASSERT_TRUE(all_zeros(lib_output));
}
if(ref_valid_mask && lib_valid_mask)
{
if(ref_output != lib_output)
{
FUZZER_WRITE_AND_CRASH("Ref and lib both accepted but produced different output:"
<< " ref = " << Botan::hex_encode(ref_output)
<< " lib = " << Botan::hex_encode(lib_output));
}
}
}
|