/* * (C) 2016 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #define BOTAN_NO_DEPRECATED_WARNINGS #include "tests.h" #if defined(BOTAN_HAS_PACKAGE_TRANSFORM) #include #endif namespace Botan_Tests { #if defined(BOTAN_HAS_PACKAGE_TRANSFORM) class Package_Transform_Tests final : public Test { public: std::vector run() override { Test::Result result("Package transform"); std::unique_ptr cipher(Botan::BlockCipher::create("AES-128")); if(!cipher) return {result}; for(size_t input_len = 2; input_len != 256; ++input_len) { std::vector input = unlock(Test::rng().random_vec(input_len)); std::vector output(input.size() + cipher->block_size()); // aont_package owns/deletes the passed cipher object, kind of a bogus API Botan::aont_package(Test::rng(), cipher->clone(), input.data(), input.size(), output.data()); std::vector decoded(output.size() - cipher->block_size()); Botan::aont_unpackage(cipher->clone(), output.data(), output.size(), decoded.data()); result.test_eq("Package transform is reversible", decoded, input); output[0] ^= 1; Botan::aont_unpackage(cipher->clone(), output.data(), output.size(), decoded.data()); result.test_ne("Bitflip breaks package transform", decoded, input); output[0] ^= 1; Botan::aont_unpackage(cipher->clone(), output.data(), output.size(), decoded.data()); result.test_eq("Package transform is still reversible", decoded, input); // More tests including KATs would be useful for these functions } return std::vector {result}; } }; BOTAN_REGISTER_TEST("package_transform", Package_Transform_Tests); #endif }