diff options
author | bunnei <bunneidev@gmail.com> | 2021-04-10 07:47:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-10 07:47:34 +0200 |
commit | 31c80b8c6faa7681e7b16a4052403281c7f2b9cd (patch) | |
tree | 01d09ebe1b0b4c9397a8682e3f4a66bcb884ba96 /src/core/hle/service/spl | |
parent | Merge pull request #6156 from lioncash/lock-discard (diff) | |
parent | wlan: Update to 12.x (diff) | |
download | yuzu-31c80b8c6faa7681e7b16a4052403281c7f2b9cd.tar yuzu-31c80b8c6faa7681e7b16a4052403281c7f2b9cd.tar.gz yuzu-31c80b8c6faa7681e7b16a4052403281c7f2b9cd.tar.bz2 yuzu-31c80b8c6faa7681e7b16a4052403281c7f2b9cd.tar.lz yuzu-31c80b8c6faa7681e7b16a4052403281c7f2b9cd.tar.xz yuzu-31c80b8c6faa7681e7b16a4052403281c7f2b9cd.tar.zst yuzu-31c80b8c6faa7681e7b16a4052403281c7f2b9cd.zip |
Diffstat (limited to 'src/core/hle/service/spl')
-rw-r--r-- | src/core/hle/service/spl/spl.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/spl/spl.cpp b/src/core/hle/service/spl/spl.cpp index 4e212610f..fff3f3c42 100644 --- a/src/core/hle/service/spl/spl.cpp +++ b/src/core/hle/service/spl/spl.cpp @@ -60,6 +60,8 @@ SPL_FS::SPL_FS(Core::System& system_, std::shared_ptr<Module> module_) {4, nullptr, "GenerateAesKey"}, {5, nullptr, "SetConfig"}, {7, &SPL::GetRandomBytes, "GenerateRandomBytes"}, + {9, nullptr, "ImportLotusKey"}, + {10, nullptr, "DecryptLotusMessage"}, {11, nullptr, "IsDevelopment"}, {12, nullptr, "GenerateSpecificAesKey"}, {14, nullptr, "DecryptAesKey"}, @@ -123,6 +125,7 @@ SPL_ES::SPL_ES(Core::System& system_, std::shared_ptr<Module> module_) {14, nullptr, "DecryptAesKey"}, {15, nullptr, "CryptAesCtr"}, {16, nullptr, "ComputeCmac"}, + {17, nullptr, "ImportEsKey"}, {18, nullptr, "UnwrapTitleKey"}, {20, nullptr, "PrepareEsCommonKey"}, {21, nullptr, "AllocateAesKeyslot"}, |