aboutsummaryrefslogtreecommitdiff
path: root/src/core/crypto/partition_data_manager.h
AgeCommit message (Collapse)Author
2024-01-25vfs: Move vfs files to their own directoryFearlessTobi
2022-04-23general: Convert source file copyright comments over to SPDXMorph
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
2019-09-21partition_data_manager: Add accessor for decrypted PRODINFO partitionZach Hilman
2018-10-13partition_data_manager: Take package2_keys by const referenceLioncash
These are only ever read from, so we don't need to make a copy of all the keys here.
2018-10-13key_manager/partition_data_manager: Silence truncation compiler warningsLioncash
2018-10-13partition_data_manager: Dehardcode array boundsLioncash
Instead, we can make it part of the type and make named variables for them, so they only require one definition (and if they ever change for whatever reason, they only need to be changed in one spot).
2018-10-13partition_data_manager: Take VirtualFile by const reference in constructorLioncash
Given the VirtualFile instance isn't stored into the class as a data member, or written to, this can just be turned into a const reference, as the constructor doesn't need to make a copy of it.
2018-10-13partition_data_manager: Remove unused includesLioncash
Gets unused includes out of the headers and moves them into the cpp file if they're used there instead.
2018-10-07partition_data_manager: Rename system files for hekateZach Hilman
x
2018-10-07crypto: Add PartitionDataManagerZach Hilman
Keeps track of system files for key derivation