Core/DataStores: Allow loading encrypted sections when key is known when reading from casc storage

Closes #24456
This commit is contained in:
Shauren
2020-05-10 15:29:47 +02:00
parent 16761e1d7c
commit d889228259
6 changed files with 43 additions and 9 deletions

View File

@@ -61,3 +61,8 @@ char const* DB2FileSystemSource::GetFileName() const
{
return _fileName.c_str();
}
DB2EncryptedSectionHandling DB2FileSystemSource::HandleEncryptedSection(DB2SectionHeader const& /*sectionHeader*/) const
{
return DB2EncryptedSectionHandling::Skip;
}