mirror of
https://git.citron-emu.org/Citron/Citron.git
synced 2026-04-15 07:01:25 +00:00
- In commit b3facaa6bb, the copyright header was
updated to include "Citron Homebrew Project" across multiple files, regardless
of whether any contributions were made.
- This commit removes the incorrect attribution and reverts the copyright header
to its previous state.
- Copyright attribution should only be added when meaningful contributions have
been made to the file.
- This commit ensures proper compliance with copyright standards and maintains
correct attribution to the respective contributors.
- Special thanks to Tachi for pointing out the need for these corrections and
ensuring that proper attribution practices are followed.
35 lines
909 B
C++
35 lines
909 B
C++
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <array>
|
|
|
|
#include "core/crypto/aes_util.h"
|
|
#include "core/crypto/encryption_layer.h"
|
|
#include "core/crypto/key_manager.h"
|
|
|
|
namespace Core::Crypto {
|
|
|
|
// Sits on top of a VirtualFile and provides CTR-mode AES description.
|
|
class CTREncryptionLayer : public EncryptionLayer {
|
|
public:
|
|
using IVData = std::array<u8, 16>;
|
|
|
|
CTREncryptionLayer(FileSys::VirtualFile base_, Key128 key_, std::size_t base_offset_);
|
|
|
|
std::size_t Read(u8* data, std::size_t length, std::size_t offset) const override;
|
|
|
|
void SetIV(const IVData& iv);
|
|
|
|
private:
|
|
std::size_t base_offset;
|
|
|
|
// Must be mutable as operations modify cipher contexts.
|
|
mutable AESCipher<Key128> cipher;
|
|
mutable IVData iv{};
|
|
|
|
void UpdateIV(std::size_t offset) const;
|
|
};
|
|
|
|
} // namespace Core::Crypto
|