spl: refactor into sts namespace

This commit is contained in:
Michael Scire 2019-06-21 01:36:00 -07:00
parent 1671c04e24
commit f9b48f06a3
30 changed files with 2230 additions and 2152 deletions

View file

@ -18,31 +18,36 @@
#include <stratosphere.hpp>
#include "spl_general_service.hpp"
#include "spl_api.hpp"
Result GeneralService::GetConfig(Out<u64> out, u32 which) {
return this->GetSecureMonitorWrapper()->GetConfig(out.GetPointer(), static_cast<SplConfigItem>(which));
}
namespace sts::spl {
Result GeneralService::ExpMod(OutPointerWithClientSize<u8> out, InPointer<u8> base, InPointer<u8> exp, InPointer<u8> mod) {
return this->GetSecureMonitorWrapper()->ExpMod(out.pointer, out.num_elements, base.pointer, base.num_elements, exp.pointer, exp.num_elements, mod.pointer, mod.num_elements);
}
Result GeneralService::GetConfig(Out<u64> out, u32 which) {
return spl::GetConfig(out.GetPointer(), static_cast<SplConfigItem>(which));
}
Result GeneralService::SetConfig(u32 which, u64 value) {
return this->GetSecureMonitorWrapper()->SetConfig(static_cast<SplConfigItem>(which), value);
}
Result GeneralService::ExpMod(OutPointerWithClientSize<u8> out, InPointer<u8> base, InPointer<u8> exp, InPointer<u8> mod) {
return spl::ExpMod(out.pointer, out.num_elements, base.pointer, base.num_elements, exp.pointer, exp.num_elements, mod.pointer, mod.num_elements);
}
Result GeneralService::GenerateRandomBytes(OutPointerWithClientSize<u8> out) {
return this->GetSecureMonitorWrapper()->GenerateRandomBytes(out.pointer, out.num_elements);
}
Result GeneralService::SetConfig(u32 which, u64 value) {
return spl::SetConfig(static_cast<SplConfigItem>(which), value);
}
Result GeneralService::IsDevelopment(Out<bool> is_dev) {
return this->GetSecureMonitorWrapper()->IsDevelopment(is_dev.GetPointer());
}
Result GeneralService::GenerateRandomBytes(OutPointerWithClientSize<u8> out) {
return spl::GenerateRandomBytes(out.pointer, out.num_elements);
}
Result GeneralService::SetBootReason(BootReasonValue boot_reason) {
return this->GetSecureMonitorWrapper()->SetBootReason(boot_reason);
}
Result GeneralService::IsDevelopment(Out<bool> is_dev) {
return spl::IsDevelopment(is_dev.GetPointer());
}
Result GeneralService::SetBootReason(BootReasonValue boot_reason) {
return spl::SetBootReason(boot_reason);
}
Result GeneralService::GetBootReason(Out<BootReasonValue> out) {
return spl::GetBootReason(out.GetPointer());
}
Result GeneralService::GetBootReason(Out<BootReasonValue> out) {
return this->GetSecureMonitorWrapper()->GetBootReason(out.GetPointer());
}