From c6db1c390b748646d77f38f92529f706eaa6b6ae Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 2 Aug 2018 10:19:15 -0400 Subject: hw: Remove unused files None of these files are used in any meaningful way. They're just leftovers from citra. Also has the benefit of getting rid of an unused global variable. --- src/core/hw/aes/ccm.cpp | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 src/core/hw/aes/ccm.cpp (limited to 'src/core/hw/aes') diff --git a/src/core/hw/aes/ccm.cpp b/src/core/hw/aes/ccm.cpp deleted file mode 100644 index 1ee37aaa4..000000000 --- a/src/core/hw/aes/ccm.cpp +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright 2017 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#include -#include "common/alignment.h" -#include "common/assert.h" -#include "common/logging/log.h" -#include "core/hw/aes/ccm.h" -#include "core/hw/aes/key.h" - -namespace HW { -namespace AES { - -std::vector EncryptSignCCM(const std::vector& pdata, const CCMNonce& nonce, - size_t slot_id) { - UNIMPLEMENTED(); - return {}; -} - -std::vector DecryptVerifyCCM(const std::vector& cipher, const CCMNonce& nonce, - size_t slot_id) { - UNIMPLEMENTED(); - return {}; -} - -} // namespace AES -} // namespace HW -- cgit v1.2.3