diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-09-10 13:40:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-10 13:40:39 -0400 |
| commit | 64130d9f01c15bc021d3802e484b5a480911e5cc (patch) | |
| tree | 88a1905a2dce48c34c77fc258b47b4aea66107a9 /src/core/loader/loader.h | |
| parent | 3df56dc790939a01dd5e07825e168ce9b462c2a7 (diff) | |
| parent | 716e0a126a22cfdeeaad6204f236324429345d2e (diff) | |
Merge pull request #11456 from liamwhite/worse-integrity-verification
core: implement basic integrity verification
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 721eb8e8c..b4828f7cd 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h @@ -3,6 +3,7 @@ #pragma once +#include <functional> #include <iosfwd> #include <memory> #include <optional> @@ -132,6 +133,8 @@ enum class ResultStatus : u16 { ErrorBLZDecompressionFailed, ErrorBadINIHeader, ErrorINITooManyKIPs, + ErrorIntegrityVerificationNotImplemented, + ErrorIntegrityVerificationFailed, }; std::string GetResultStatusString(ResultStatus status); @@ -170,6 +173,13 @@ public: virtual LoadResult Load(Kernel::KProcess& process, Core::System& system) = 0; /** + * Try to verify the integrity of the file. + */ + virtual ResultStatus VerifyIntegrity(std::function<bool(size_t, size_t)> progress_callback) { + return ResultStatus::ErrorIntegrityVerificationNotImplemented; + } + + /** * Get the code (typically .code section) of the application * * @param[out] buffer Reference to buffer to store data |
