initial AES decryption for Wii Discs

This commit is contained in:
Jack Andersen
2015-06-28 19:35:25 -10:00
parent 03a371b7bf
commit f297c7ff37
6 changed files with 759 additions and 7 deletions

View File

@@ -8,4 +8,12 @@ DiscBase::DiscBase(std::unique_ptr<IDiscIO>&& dio)
{
}
void DiscBase::IPartition::parseFST()
{
char buf[1024];
std::unique_ptr<IPartReadStream> s = beginReadStream();
s->read(buf, 1024);
printf("");
}
}