From 34eb8b7e9cf8740bd770beed49b0bf6693661c29 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Wed, 24 Feb 2016 00:05:23 +0100 Subject: [PATCH] Remove unnecessary stuff. --- src/Components/Modules/Auth.cpp | 56 +-------------------------------- src/Components/Modules/Auth.hpp | 1 - 2 files changed, 1 insertion(+), 56 deletions(-) diff --git a/src/Components/Modules/Auth.cpp b/src/Components/Modules/Auth.cpp index 9111503f..825512a3 100644 --- a/src/Components/Modules/Auth.cpp +++ b/src/Components/Modules/Auth.cpp @@ -96,7 +96,7 @@ namespace Components { if (Auth::TokenContainer.command.empty()) { - Game::MessageBox(Utils::VA("Your new security level is now %d", Auth::GetSecurityLevel()), "Success"); + Game::MessageBox(Utils::VA("Your new security level is %d", Auth::GetSecurityLevel()), "Success"); } else { @@ -430,58 +430,4 @@ namespace Components Auth::StoreKey(); } - - bool Auth::UnitTest() - { -// Utils::Cryptography::Token t; -// auto _key = Utils::Cryptography::ECDSA::GenerateKey(512); -// Auth::IncrementToken(t, _key.GetPublicKey(), 22); -// -// Utils::WriteFile("pubKey.dat", _key.GetPublicKey()); -// Utils::WriteFile("token.dat", t.ToString()); - -/* - Utils::Cryptography::Token t; - for (int i = 0; i < 1'000'000; ++i, ++t) - { - printf("%s\n", Utils::DumpHex(t.ToString()).data()); - } -*/ -// auto testSecurityLevel = [](size_t level, std::string key) -// { -// auto startTime = std::chrono::high_resolution_clock::now(); -// Utils::Cryptography::Token t; -// Auth::IncrementToken(t, key, level); -// return std::chrono::duration_cast(std::chrono::high_resolution_clock::now() - startTime).count(); -// }; -// -// for (int j = 10; j < 30; ++j) -// { -// printf("\nTesting security level %i:\n", j); -// -// std::vector times; -// -// for (int i = 0; i < 10; ++i) -// { -// auto key = Utils::Cryptography::ECDSA::GenerateKey(512); -// -// auto time = testSecurityLevel(j, key.GetPublicKey()); -// times.push_back(time); -// printf("\t%i: %llims\n", i, time); -// } -// -// long long average = 0; -// -// for (auto time : times) -// { -// average += time; -// } -// -// average /= times.size(); -// -// printf("\n Average: %llims\n", average); -// } - - return true; - } } diff --git a/src/Components/Modules/Auth.hpp b/src/Components/Modules/Auth.hpp index 967f4ad9..6db9a6a9 100644 --- a/src/Components/Modules/Auth.hpp +++ b/src/Components/Modules/Auth.hpp @@ -6,7 +6,6 @@ namespace Components Auth(); ~Auth(); const char* GetName() { return "Auth"; }; - bool UnitTest(); static void StoreKey(); static void LoadKey(bool force = false);