summaryrefslogtreecommitdiffstats
path: root/src/core/file_sys/xts_archive.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* xts_archive: Make AsNCA() return a std::unique_ptr instead of a std::shared_ptrLioncash2018-09-191-1/+1
| | | | | | | | | std::shared_ptr isn't strictly necessary here and is only ever used in contexts where the object doesn't depend on being shared. This also makes the interface more flexible, as it's possible to create a std::shared_ptr from a std::unique_ptr (std::shared_ptr has a constructor that accepts a std::unique_ptr), but not the other way around.
* xts_archive: Ensure NAX's type member is always initializedLioncash2018-09-191-1/+1
| | | | Ensures that the member always has a deterministic value.
* file_sys/crypto: Fix missing/unnecessary includesZach Hilman2018-08-251-0/+1
|
* crypto: Eliminate magic constantsZach Hilman2018-08-231-5/+5
|
* file_sys: Implement NAX containersZach Hilman2018-08-231-0/+68