aboutsummaryrefslogtreecommitdiff
path: root/src/core/hw/aes/ccm.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-08-02 14:58:01 -0400
committerGitHub <noreply@github.com>2018-08-02 14:58:01 -0400
commit4de18e054b7b7bcd71561548f73571ee9e5b8aea (patch)
tree307732a9c85e47c019d9c013bef4c211b9b4e3f2 /src/core/hw/aes/ccm.cpp
parentbae1822aede2a990c63c1a50b17ad526c1410cc3 (diff)
parentc6db1c390b748646d77f38f92529f706eaa6b6ae (diff)
Merge pull request #899 from lioncash/unused
hw: Remove unused files
Diffstat (limited to 'src/core/hw/aes/ccm.cpp')
-rw-r--r--src/core/hw/aes/ccm.cpp28
1 files changed, 0 insertions, 28 deletions
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 <algorithm>
-#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<u8> EncryptSignCCM(const std::vector<u8>& pdata, const CCMNonce& nonce,
- size_t slot_id) {
- UNIMPLEMENTED();
- return {};
-}
-
-std::vector<u8> DecryptVerifyCCM(const std::vector<u8>& cipher, const CCMNonce& nonce,
- size_t slot_id) {
- UNIMPLEMENTED();
- return {};
-}
-
-} // namespace AES
-} // namespace HW