2018-08-16 21:01:32 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#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 XTS-mode AES decription.
|
|
|
|
class XTSEncryptionLayer : public EncryptionLayer {
|
|
|
|
public:
|
|
|
|
XTSEncryptionLayer(FileSys::VirtualFile base, Key256 key);
|
|
|
|
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t Read(u8* data, std::size_t length, std::size_t offset) const override;
|
2018-08-16 21:01:32 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Must be mutable as operations modify cipher contexts.
|
|
|
|
mutable AESCipher<Key256> cipher;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Core::Crypto
|