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
|
|
|
|
|
2018-07-29 23:00:09 +00:00
|
|
|
#include <vector>
|
2018-07-29 01:39:42 +00:00
|
|
|
#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
|
|
|
|
2018-07-29 01:39:42 +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.
|
2018-07-29 01:39:42 +00:00
|
|
|
class CTREncryptionLayer : public EncryptionLayer {
|
|
|
|
public:
|
2018-07-28 03:55:23 +00:00
|
|
|
CTREncryptionLayer(FileSys::VirtualFile base, Key128 key, size_t base_offset);
|
|
|
|
|
|
|
|
size_t Read(u8* data, size_t length, size_t offset) const override;
|
|
|
|
|
2018-07-29 01:39:42 +00:00
|
|
|
void SetIV(const std::vector<u8>& iv);
|
2018-07-28 03:55:23 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
size_t base_offset;
|
|
|
|
|
|
|
|
// Must be mutable as operations modify cipher contexts.
|
|
|
|
mutable AESCipher<Key128> cipher;
|
|
|
|
mutable std::vector<u8> iv;
|
|
|
|
|
|
|
|
void UpdateIV(size_t offset) const;
|
|
|
|
};
|
|
|
|
|
2018-07-29 01:39:42 +00:00
|
|
|
} // namespace Core::Crypto
|