diff options
author | Hexagon12 <Hexagon12@users.noreply.github.com> | 2018-04-17 17:37:43 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-04-17 17:37:43 +0200 |
commit | e52a87b98a8aba7df498f4cdb861484ecd0333ca (patch) | |
tree | d23babf7fd3e6b40c77a1ba5141ff3cad6357787 /src/core/hle/service/spl | |
parent | Merge pull request #342 from bunnei/indexed-verts (diff) | |
download | yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.gz yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.bz2 yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.lz yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.xz yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.zst yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.zip |
Diffstat (limited to 'src/core/hle/service/spl')
-rw-r--r-- | src/core/hle/service/spl/spl.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/service/spl/spl.cpp b/src/core/hle/service/spl/spl.cpp index deab29b91..3fcef341e 100644 --- a/src/core/hle/service/spl/spl.cpp +++ b/src/core/hle/service/spl/spl.cpp @@ -33,6 +33,12 @@ SPL::SPL(std::shared_ptr<Module> module) : Module::Interface(std::move(module), {23, nullptr, "GetSplWaitEvent"}, {24, nullptr, "SetSharedData"}, {25, nullptr, "GetSharedData"}, + {26, nullptr, "ImportSslRsaKey"}, + {27, nullptr, "SecureExpModWithSslKey"}, + {28, nullptr, "ImportEsRsaKey"}, + {29, nullptr, "SecureExpModWithEsKey"}, + {30, nullptr, "EncryptManuRsaKeyForImport"}, + {31, nullptr, "GetPackage2Hash"}, }; RegisterHandlers(functions); } |