/* * (C) 2009 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #include "tests.h" #if defined(BOTAN_HAS_THRESHOLD_SECRET_SHARING) #include #include #include size_t test_tss() { using namespace Botan; auto& rng = test_rng(); size_t fails = 0; byte id[16]; for(int i = 0; i != 16; ++i) id[i] = i; const secure_vector S = hex_decode_locked("7465737400"); std::vector shares = RTSS_Share::split(2, 4, S.data(), S.size(), id, rng); auto back = RTSS_Share::reconstruct(shares); if(S != back) { std::cout << "TSS-0: " << hex_encode(S) << " != " << hex_encode(back) << std::endl; ++fails; } shares.resize(shares.size()-1); back = RTSS_Share::reconstruct(shares); if(S != back) { std::cout << "TSS-1: " << hex_encode(S) << " != " << hex_encode(back) << std::endl; ++fails; } test_report("TSS", 2, fails); return fails; } #else SKIP_TEST(tss); #endif // BOTAN_HAS_THRESHOLD_SECRET_SHARING