From 4b8f2b64ebb7fcba20c3c03d7bccd08e48612fbb Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 16 Oct 2023 11:30:27 +0200 Subject: Remove unused code. --- test/crypto_test.cc | 47 ----------------------------------------------- test/wscript | 1 - 2 files changed, 48 deletions(-) delete mode 100644 test/crypto_test.cc (limited to 'test') diff --git a/test/crypto_test.cc b/test/crypto_test.cc deleted file mode 100644 index 53451b352..000000000 --- a/test/crypto_test.cc +++ /dev/null @@ -1,47 +0,0 @@ -/* - Copyright (C) 2018-2021 Carl Hetherington - - This file is part of DCP-o-matic. - - DCP-o-matic is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - DCP-o-matic is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with DCP-o-matic. If not, see . - -*/ - - -#include "lib/crypto.h" -#include "lib/exceptions.h" -#include "test.h" -#include -#include - - -using std::string; -using std::list; - - -BOOST_AUTO_TEST_CASE (crypto_test) -{ - dcp::ArrayData key (dcpomatic::crypto_key_length()); - dcp::ArrayData iv = dcpomatic::random_iv (); - - RAND_bytes (key.data(), dcpomatic::crypto_key_length()); - - auto ciphertext = dcpomatic::encrypt ("Can you see any fish?", key, iv); - BOOST_REQUIRE_EQUAL (dcpomatic::decrypt (ciphertext, key, iv), "Can you see any fish?"); - - key.data()[5]++; - key.data()[6]++; - BOOST_REQUIRE_THROW (dcpomatic::decrypt (ciphertext, key, iv), CryptoError); -} - diff --git a/test/wscript b/test/wscript index 0c9db3889..e8762009c 100644 --- a/test/wscript +++ b/test/wscript @@ -70,7 +70,6 @@ def build(bld): cpl_hash_test.cc cpl_metadata_test.cc create_cli_test.cc - crypto_test.cc dcpomatic_time_test.cc dcp_decoder_test.cc dcp_digest_file_test.cc -- cgit v1.2.3