/* * Copyright (c) Atmosphère-NX * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include "spl_api_impl.hpp" #include "spl_deprecated_service.hpp" namespace ams::spl { DeprecatedService::~DeprecatedService() { /* Free any keyslots this service is using. */ impl::DeallocateAllAesKeySlots(this); } Result DeprecatedService::GetConfig(sf::Out out, u32 which) { return impl::GetConfig(out.GetPointer(), static_cast(which)); } Result DeprecatedService::ModularExponentiate(const sf::OutPointerBuffer &out, const sf::InPointerBuffer &base, const sf::InPointerBuffer &exp, const sf::InPointerBuffer &mod) { return impl::ModularExponentiate(out.GetPointer(), out.GetSize(), base.GetPointer(), base.GetSize(), exp.GetPointer(), exp.GetSize(), mod.GetPointer(), mod.GetSize()); } Result DeprecatedService::GenerateAesKek(sf::Out out_access_key, KeySource key_source, u32 generation, u32 option) { return impl::GenerateAesKek(out_access_key.GetPointer(), key_source, generation, option); } Result DeprecatedService::LoadAesKey(s32 keyslot, AccessKey access_key, KeySource key_source) { return impl::LoadAesKey(keyslot, this, access_key, key_source); } Result DeprecatedService::GenerateAesKey(sf::Out out_key, AccessKey access_key, KeySource key_source) { return impl::GenerateAesKey(out_key.GetPointer(), access_key, key_source); } Result DeprecatedService::SetConfig(u32 which, u64 value) { return impl::SetConfig(static_cast(which), value); } Result DeprecatedService::GenerateRandomBytes(const sf::OutPointerBuffer &out) { return impl::GenerateRandomBytes(out.GetPointer(), out.GetSize()); } Result DeprecatedService::DecryptAndStoreGcKey(const sf::InPointerBuffer &src, AccessKey access_key, KeySource key_source, u32 option) { return impl::DecryptAndStoreGcKey(src.GetPointer(), src.GetSize(), access_key, key_source, option); } Result DeprecatedService::DecryptGcMessage(sf::Out out_size, const sf::OutPointerBuffer &out, const sf::InPointerBuffer &base, const sf::InPointerBuffer &mod, const sf::InPointerBuffer &label_digest) { return impl::DecryptGcMessage(out_size.GetPointer(), out.GetPointer(), out.GetSize(), base.GetPointer(), base.GetSize(), mod.GetPointer(), mod.GetSize(), label_digest.GetPointer(), label_digest.GetSize()); } Result DeprecatedService::IsDevelopment(sf::Out is_dev) { return impl::IsDevelopment(is_dev.GetPointer()); } Result DeprecatedService::GenerateSpecificAesKey(sf::Out out_key, KeySource key_source, u32 generation, u32 which) { return impl::GenerateSpecificAesKey(out_key.GetPointer(), key_source, generation, which); } Result DeprecatedService::DecryptDeviceUniqueData(const sf::OutPointerBuffer &dst, const sf::InPointerBuffer &src, AccessKey access_key, KeySource key_source, u32 option) { return impl::DecryptDeviceUniqueData(dst.GetPointer(), dst.GetSize(), src.GetPointer(), src.GetSize(), access_key, key_source, option); } Result DeprecatedService::DecryptAesKey(sf::Out out_key, KeySource key_source, u32 generation, u32 option) { return impl::DecryptAesKey(out_key.GetPointer(), key_source, generation, option); } Result DeprecatedService::ComputeCtrDeprecated(const sf::OutBuffer &out_buf, s32 keyslot, const sf::InBuffer &in_buf, IvCtr iv_ctr) { return impl::ComputeCtr(out_buf.GetPointer(), out_buf.GetSize(), keyslot, this, in_buf.GetPointer(), in_buf.GetSize(), iv_ctr); } Result DeprecatedService::ComputeCtr(const sf::OutNonSecureBuffer &out_buf, s32 keyslot, const sf::InNonSecureBuffer &in_buf, IvCtr iv_ctr) { return impl::ComputeCtr(out_buf.GetPointer(), out_buf.GetSize(), keyslot, this, in_buf.GetPointer(), in_buf.GetSize(), iv_ctr); } Result DeprecatedService::ComputeCmac(sf::Out out_cmac, s32 keyslot, const sf::InPointerBuffer &in_buf) { return impl::ComputeCmac(out_cmac.GetPointer(), keyslot, this, in_buf.GetPointer(), in_buf.GetSize()); } Result DeprecatedService::LoadEsDeviceKey(const sf::InPointerBuffer &src, AccessKey access_key, KeySource key_source, u32 option) { return impl::LoadEsDeviceKey(src.GetPointer(), src.GetSize(), access_key, key_source, option); } Result DeprecatedService::PrepareEsTitleKeyDeprecated(sf::Out out_access_key, const sf::InPointerBuffer &base, const sf::InPointerBuffer &mod, const sf::InPointerBuffer &label_digest) { return impl::PrepareEsTitleKey(out_access_key.GetPointer(), base.GetPointer(), base.GetSize(), mod.GetPointer(), mod.GetSize(), label_digest.GetPointer(), label_digest.GetSize(), 0); } Result DeprecatedService::PrepareEsTitleKey(sf::Out out_access_key, const sf::InPointerBuffer &base, const sf::InPointerBuffer &mod, const sf::InPointerBuffer &label_digest, u32 generation) { return impl::PrepareEsTitleKey(out_access_key.GetPointer(), base.GetPointer(), base.GetSize(), mod.GetPointer(), mod.GetSize(), label_digest.GetPointer(), label_digest.GetSize(), generation); } Result DeprecatedService::LoadPreparedAesKey(s32 keyslot, AccessKey access_key) { return impl::LoadPreparedAesKey(keyslot, this, access_key); } Result DeprecatedService::PrepareCommonEsTitleKeyDeprecated(sf::Out out_access_key, KeySource key_source) { return impl::PrepareCommonEsTitleKey(out_access_key.GetPointer(), key_source, 0); } Result DeprecatedService::PrepareCommonEsTitleKey(sf::Out out_access_key, KeySource key_source, u32 generation) { return impl::PrepareCommonEsTitleKey(out_access_key.GetPointer(), key_source, generation); } Result DeprecatedService::AllocateAesKeySlot(sf::Out out_keyslot) { return impl::AllocateAesKeySlot(out_keyslot.GetPointer(), this); } Result DeprecatedService::DeallocateAesKeySlot(s32 keyslot) { return impl::DeallocateAesKeySlot(keyslot, this); } Result DeprecatedService::GetAesKeySlotAvailableEvent(sf::OutCopyHandle out_hnd) { out_hnd.SetValue(impl::GetAesKeySlotAvailableEventHandle(), false); return ResultSuccess(); } Result DeprecatedService::SetBootReason(BootReasonValue boot_reason) { return impl::SetBootReason(boot_reason); } Result DeprecatedService::GetBootReason(sf::Out out) { return impl::GetBootReason(out.GetPointer()); } }