aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-12-19 13:14:12 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2017-12-19 13:14:12 +0000
commit3ed1a74ca3a102945cbdce402767cd25c69fa250 (patch)
tree751a4c182ca13ac14d43f41090e4cf0b0c977c7c /tests/unit_tests
parentMerge pull request #2134 (diff)
downloadmonero-3ed1a74ca3a102945cbdce402767cd25c69fa250.tar.xz
tests: remove unused/unfinished keccak bits
The author doesn't seem to be finishing/fixing this, and it doesn't do anything.
Diffstat (limited to 'tests/unit_tests')
-rw-r--r--tests/unit_tests/crypto.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/unit_tests/crypto.cpp b/tests/unit_tests/crypto.cpp
index d9a7b8ad5..3a8e787ec 100644
--- a/tests/unit_tests/crypto.cpp
+++ b/tests/unit_tests/crypto.cpp
@@ -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)