diff --git a/ChaosTests/Cipher/Arc4CryptTests.cpp b/ChaosTests/Cipher/Arc4CryptTests.cpp index c423296..b2192bc 100644 --- a/ChaosTests/Cipher/Arc4CryptTests.cpp +++ b/ChaosTests/Cipher/Arc4CryptTests.cpp @@ -21,19 +21,6 @@ static std::vector StrToU8Vec(const char * str) return result; } -static std::string U8VecToStr(const std::vector & vec) -{ - std::string result; - result.reserve(vec.size()); - - for (auto it = vec.begin(); it != vec.end(); ++it) - { - result.push_back(static_cast(*it)); - } - - return result; -} - TEST(Arc4CryptTests, BasicTest) { const std::vector key = StrToU8Vec("Secret");