diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-08-16 23:01:32 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-08-23 17:52:44 +0200 |
commit | c4845df3d4b9fc3fc19dd936af87090ffb3fbdf2 (patch) | |
tree | 7bca82326831ee20fc73a4fb2d609825cce8fad3 /src/core/file_sys | |
parent | aes_util: Make XTSTranscode stricter about sizes (diff) | |
download | yuzu-c4845df3d4b9fc3fc19dd936af87090ffb3fbdf2.tar yuzu-c4845df3d4b9fc3fc19dd936af87090ffb3fbdf2.tar.gz yuzu-c4845df3d4b9fc3fc19dd936af87090ffb3fbdf2.tar.bz2 yuzu-c4845df3d4b9fc3fc19dd936af87090ffb3fbdf2.tar.lz yuzu-c4845df3d4b9fc3fc19dd936af87090ffb3fbdf2.tar.xz yuzu-c4845df3d4b9fc3fc19dd936af87090ffb3fbdf2.tar.zst yuzu-c4845df3d4b9fc3fc19dd936af87090ffb3fbdf2.zip |
Diffstat (limited to 'src/core/file_sys')
-rw-r--r-- | src/core/file_sys/content_archive.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/file_sys/content_archive.cpp b/src/core/file_sys/content_archive.cpp index 47afcad9b..008e11d8c 100644 --- a/src/core/file_sys/content_archive.cpp +++ b/src/core/file_sys/content_archive.cpp @@ -178,7 +178,7 @@ VirtualFile NCA::Decrypt(NCASectionHeader s_header, VirtualFile in, u64 starting return std::static_pointer_cast<VfsFile>(out); } case NCASectionCryptoType::XTS: - // TODO(DarkLordZach): Implement XTSEncryptionLayer. + // TODO(DarkLordZach): Find a test case for XTS-encrypted NCAs default: LOG_ERROR(Crypto, "called with unhandled crypto type={:02X}", static_cast<u8>(s_header.raw.header.crypto_type)); |