mirror of
https://github.com/arvidn/libtorrent.git
synced 2026-07-26 22:11:43 -04:00
85 lines
2.2 KiB
C++
85 lines
2.2 KiB
C++
/*
|
|
|
|
Copyright (c) 2016, Alden Torres
|
|
Copyright (c) 2017, 2019-2021, Arvid Norberg
|
|
Copyright (c) 2021, Mike Tzou
|
|
All rights reserved.
|
|
|
|
You may use, distribute and modify this code under the terms of the BSD license,
|
|
see LICENSE file.
|
|
*/
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
#include "libtorrent/aux_/hasher512.hpp"
|
|
#include "libtorrent/hex.hpp"
|
|
|
|
#include "test.hpp"
|
|
|
|
using namespace lt;
|
|
|
|
namespace
|
|
{
|
|
void test_vector(std::string s, std::string output, int const n = 1)
|
|
{
|
|
aux::hasher512 h;
|
|
for (int i = 0; i < n; i++)
|
|
h.update(s);
|
|
std::string digest = h.final().to_string();
|
|
TEST_EQUAL(aux::to_hex(digest), output);
|
|
}
|
|
}
|
|
|
|
// http://www.di-mgt.com.au/sha_testvectors.html
|
|
TORRENT_TEST(hasher512_test_vec1)
|
|
{
|
|
test_vector(
|
|
"abc"
|
|
, "ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a"
|
|
"2192992a274fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f"
|
|
);
|
|
|
|
test_vector(
|
|
"abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"
|
|
, "204a8fc6dda82f0a0ced7beb8e08a41657c16ef468b228a8279be331a703c335"
|
|
"96fd15c13b1b07f9aa1d3bea57789ca031ad85c7a71dd70354ec631238ca3445"
|
|
);
|
|
|
|
test_vector(
|
|
"abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhi"
|
|
"jklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu"
|
|
, "8e959b75dae313da8cf4f72814fc143f8f7779c6eb9f7fa17299aeadb6889018"
|
|
"501d289e4900f7e4331b99dec4b5433ac7d329eeb6dd26545e96e55b874be909"
|
|
);
|
|
|
|
test_vector(
|
|
"a"
|
|
, "e718483d0ce769644e2e42c7bc15b4638e1f98b13b2044285632a803afa973eb"
|
|
"de0ff244877ea60a4cb0432ce577c31beb009c5c2c49aa2e4eadb217ad8cc09b"
|
|
, 1000000
|
|
);
|
|
|
|
test_vector(
|
|
"abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmno"
|
|
, "b47c933421ea2db149ad6e10fce6c7f93d0752380180ffd7f4629a712134831d"
|
|
"77be6091b819ed352c2967a2e2d4fa5050723c9630691f1a05a7281dbe6c1086"
|
|
, 16777216
|
|
);
|
|
}
|
|
|
|
TORRENT_TEST(hasher512_move)
|
|
{
|
|
std::string const input = "abc";
|
|
std::string const digest = aux::hasher512(input).final().to_string();
|
|
|
|
aux::hasher512 tmp1(input);
|
|
aux::hasher512 h1(std::move(tmp1));
|
|
TEST_EQUAL(h1.final().to_string(), digest);
|
|
|
|
aux::hasher512 tmp2(input);
|
|
aux::hasher512 h2 = std::move(tmp2);
|
|
TEST_EQUAL(h2.final().to_string(), digest);
|
|
}
|
|
|
|
#endif // TORRENT_DISABLE_DHT
|