mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
tests: remove unused/unfinished keccak bits
The author doesn't seem to be finishing/fixing this, and it doesn't do anything.
This commit is contained in:
parent
1cc7451130
commit
3ed1a74ca3
@ -47,14 +47,6 @@ namespace
|
||||
"8b655970153799af2aeadc9ff1add0ea6c7251d54154cfa92c173a0dd39c1f94"
|
||||
"6c7251d54154cfa92c173a0dd39c1f948b655970153799af2aeadc9ff1add0ea";
|
||||
|
||||
static std::uint8_t md[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
bool is_formatted()
|
||||
{
|
||||
@ -69,22 +61,6 @@ namespace
|
||||
out << "BEGIN" << value << "END";
|
||||
return out.str() == "BEGIN<" + std::string{expected, sizeof(T) * 2} + ">END";
|
||||
}
|
||||
|
||||
bool keccak_harness()
|
||||
{
|
||||
size_t inlen = sizeof(source);
|
||||
int mdlen = (int)sizeof(md);
|
||||
keccak(source, inlen, md, mdlen);
|
||||
|
||||
if (md[0] != 0x00)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
TEST(Crypto, Ostream)
|
||||
|
Loading…
Reference in New Issue
Block a user