2019-04-24 09:18:18 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2019 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2019-06-22 20:23:46 +01:00
|
|
|
#include "spl_api_impl.hpp"
|
2019-04-24 09:18:18 +01:00
|
|
|
#include "spl_general_service.hpp"
|
|
|
|
|
2019-10-24 10:30:10 +01:00
|
|
|
namespace ams::spl {
|
2019-04-24 09:18:18 +01:00
|
|
|
|
2019-10-16 20:50:04 +01:00
|
|
|
Result GeneralService::GetConfig(sf::Out<u64> out, u32 which) {
|
2019-06-22 20:23:46 +01:00
|
|
|
return impl::GetConfig(out.GetPointer(), static_cast<SplConfigItem>(which));
|
2019-06-21 09:36:00 +01:00
|
|
|
}
|
2019-04-24 09:18:18 +01:00
|
|
|
|
2019-10-16 20:50:04 +01:00
|
|
|
Result GeneralService::ExpMod(const sf::OutPointerBuffer &out, const sf::InPointerBuffer &base, const sf::InPointerBuffer &exp, const sf::InPointerBuffer &mod) {
|
|
|
|
return impl::ExpMod(out.GetPointer(), out.GetSize(), base.GetPointer(), base.GetSize(), exp.GetPointer(), exp.GetSize(), mod.GetPointer(), mod.GetSize());
|
2019-06-21 09:36:00 +01:00
|
|
|
}
|
2019-04-24 09:18:18 +01:00
|
|
|
|
2019-06-21 09:36:00 +01:00
|
|
|
Result GeneralService::SetConfig(u32 which, u64 value) {
|
2019-06-22 20:23:46 +01:00
|
|
|
return impl::SetConfig(static_cast<SplConfigItem>(which), value);
|
2019-06-21 09:36:00 +01:00
|
|
|
}
|
2019-04-24 09:18:18 +01:00
|
|
|
|
2019-10-16 20:50:04 +01:00
|
|
|
Result GeneralService::GenerateRandomBytes(const sf::OutPointerBuffer &out) {
|
|
|
|
return impl::GenerateRandomBytes(out.GetPointer(), out.GetSize());
|
2019-06-21 09:36:00 +01:00
|
|
|
}
|
2019-04-24 09:18:18 +01:00
|
|
|
|
2019-10-16 20:50:04 +01:00
|
|
|
Result GeneralService::IsDevelopment(sf::Out<bool> is_dev) {
|
2019-06-22 20:23:46 +01:00
|
|
|
return impl::IsDevelopment(is_dev.GetPointer());
|
2019-06-21 09:36:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Result GeneralService::SetBootReason(BootReasonValue boot_reason) {
|
2019-06-22 20:23:46 +01:00
|
|
|
return impl::SetBootReason(boot_reason);
|
2019-06-21 09:36:00 +01:00
|
|
|
}
|
|
|
|
|
2019-10-16 20:50:04 +01:00
|
|
|
Result GeneralService::GetBootReason(sf::Out<BootReasonValue> out) {
|
2019-06-22 20:23:46 +01:00
|
|
|
return impl::GetBootReason(out.GetPointer());
|
2019-06-21 09:36:00 +01:00
|
|
|
}
|
2019-04-24 09:18:18 +01:00
|
|
|
|
|
|
|
}
|