yuzu/src/core/crypto/ctr_encryption_layer.h

37 lines
921 B
C++
Raw Normal View History

2018-07-28 03:55:23 +00:00
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <array>
#include "core/crypto/aes_util.h"
#include "core/crypto/encryption_layer.h"
#include "core/crypto/key_manager.h"
2018-07-28 03:55:23 +00:00
namespace Core::Crypto {
2018-07-28 03:55:23 +00:00
// Sits on top of a VirtualFile and provides CTR-mode AES decription.
class CTREncryptionLayer : public EncryptionLayer {
public:
using IVData = std::array<u8, 16>;
CTREncryptionLayer(FileSys::VirtualFile base, Key128 key, std::size_t base_offset);
2018-07-28 03:55:23 +00:00
std::size_t Read(u8* data, std::size_t length, std::size_t offset) const override;
2018-07-28 03:55:23 +00:00
void SetIV(const IVData& iv);
2018-07-28 03:55:23 +00:00
private:
std::size_t base_offset;
2018-07-28 03:55:23 +00:00
// Must be mutable as operations modify cipher contexts.
mutable AESCipher<Key128> cipher;
mutable IVData iv{};
2018-07-28 03:55:23 +00:00
void UpdateIV(std::size_t offset) const;
2018-07-28 03:55:23 +00:00
};
} // namespace Core::Crypto