summaryrefslogtreecommitdiffstats
path: root/src/core/crypto/partition_data_manager.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* partition_data_manager: Take VirtualFile by const reference in constructorLioncash2018-10-131-1/+1
| | | | | | 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.
* partition_data_manager: Amend constructor initializer list orderLioncash2018-10-131-2/+3
| | | | | Orders the members in the exact order they would be initialized. This also prevents compiler warnings about this sort of thing.
* partition_data_manager: Remove unused includesLioncash2018-10-131-2/+1
| | | | | Gets unused includes out of the headers and moves them into the cpp file if they're used there instead.
* partition_data_manager: Rename system files for hekateZach Hilman2018-10-071-37/+52
| | | | x
* crypto: Add PartitionDataManagerZach Hilman2018-10-071-0/+586
Keeps track of system files for key derivation