Changes

6,200 bytes added ,  18:44, 12 May 2020
no edit summary
Line 1: Line 1:  +
SPL ("Secure Platform services") is responsible for handling all cryptographic operations within the system and relaying them to the [[SMC|Secure Monitor]] when necessary.
 +
 +
During [1.0.0-3.0.2], the only existing services were "csrng" and "spl:". However, in [4.0.0+] the "spl:" service was refactored and split into new services with different permission levels. Each service exposes the IPC command list differently in order to prevent cryptographic operations to take place in the wrong context.
 +
 +
In [2.0.0+] where previously only one AES keyslot was used, there is now support for 4 of them and when the session closes, all allocated AES keyslots are automatically freed.
 +
 
= csrng =
 
= csrng =
 +
This is "nn::spl::detail::IRandomInterface".
 +
 
{| class="wikitable" border="1"
 
{| class="wikitable" border="1"
 
|-
 
|-
 
! Cmd || Name
 
! Cmd || Name
 
|-
 
|-
| 0 || [[#GetRandomBytes]]
+
| 0 || [[#GenerateRandomBytes]]
 
|}
 
|}
   −
== GetRandomBytes ==
+
== GenerateRandomBytes ==
Takes a type-6 buffer and fills it with random data. Same command for "spl:" and "csrng" services.
+
Takes an output type-0xA buffer and fills it with random data from [[SMC#GenerateRandomBytes|GenerateRandomBytes SMC]]. Same command for "spl:" and "csrng" services, except for buffer-type.
    
= spl: =
 
= spl: =
[2.0.0+] Where previously only one AES engine was utilized, there is now support for 4 of them.
+
This is "nn::spl::detail::IGeneralInterface".
 
  −
[2.0.0+] When the session closes, all AES engines that were locked are automatically unlocked.
      
{| class="wikitable" border="1"
 
{| class="wikitable" border="1"
 
|-
 
|-
! Cmd || Name || Notes
+
! Cmd || Name
 +
|-
 +
| 0 || [[#GetConfig]]
 
|-
 
|-
| 0 || [[#GetConfig]] || wrapper for [[SMC#GetConfig|GetConfig]]
+
| 1 || [[#ModularExponentiate]]
 
|-
 
|-
| 1 || || user supplied modulus and exponent
+
| 5 || [[#SetConfig]]
 
|-
 
|-
| 2 || [[#GenerateAesKek]] || wrapper for [[SMC#KeygenAndSealX|KeygenAndSealX]]
+
| 7 || [[#GenerateRandomBytes]]
 
|-
 
|-
| 3 || [[#LoadAesKey]] || wrapper for [[SMC#SetKeyslotFromXY|SetKeyslotFromXY]]
+
| 11 || [[#IsDevelopment]]
 
|-
 
|-
| 4 || [[#GenerateAesKey]] || decrypts 0x10 bytes using AES ECB, uses [[SMC#SetKeyslotFromXY|SetKeyslotFromXY]] with a fixed Y
+
| 24 || [3.0.0+] [[#SetBootReason]]
 +
|-
 +
| 25 || [3.0.0+] [[#GetBootReason]]
 +
|}
 +
 
 +
== GetConfig ==
 +
Wrapper for [[SMC#GetConfig|GetConfig SMC]].
 +
 
 +
Takes an input u32 '''ConfigItem'''. Returns one or more output u64s '''ConfigValue'''.
 +
 
 +
== ModularExponentiate ==
 +
Wrapper for [[SMC#ModularExponentiate|ModularExponentiate SMC]].
 +
 
 +
Takes an output type-0xA buffer '''DataOut''' and 3 input type-0x9 buffers '''DataIn''', '''ExpIn''' and '''ModIn'''.
 +
 
 +
Performs asymmetric crypto with user supplied modulus and exponent.
 +
 
 +
== GenerateAesKek ==
 +
Wrapper for [[SMC#GenerateAesKek|GenerateAesKek SMC]].
 +
 
 +
Takes an input 16-byte '''KeySource''' and two input u32s '''Generation''' and '''Option'''. Returns an output 16-byte '''AccessKey'''.
 +
 
 +
== LoadAesKey ==
 +
Wrapper for [[SMC#LoadAesKey|LoadAesKey SMC]].
 +
 
 +
Takes an input u32 '''Keyslot''' , an input 16-byte '''AccessKey''' and an input 16-byte '''KeySource'''.
 +
 
 +
Sets the specified '''Keyslot''' with a key generated from '''AccessKey''' and '''KeySource'''.
 +
 
 +
[2.0.0+] Now verifies that the keyslot in use (0..3) is allocated by the current spl session, otherwise errors with 0xD21A. Previously, keyslot was hardcoded to 0.
 +
 
 +
== GenerateAesKey ==
 +
Takes an input 16-byte '''AccessKey''' and an input 16-byte '''KeySource'''. Returns an output 16-byte '''AesKey'''.
 +
 
 +
Generates a new key by decrypting (AES-ECB) '''KeySource''' with a key generated from the supplied '''AccessKey''' and the key set with [[SMC#LoadAesKey|LoadAesKey SMC]].
 +
 
 +
[2.0.0+] Previously, it always used keyslot 0. Now it tries to allocate a keyslot to be used and returns 0xD01A if they're all busy. When the command is done, the keyslot is released.
 +
 
 +
== SetConfig ==
 +
Wrapper for [[SMC#SetConfig|SetConfig SMC]].
 +
 
 +
Takes an input u32 '''ConfigItem''' and an input u64 '''ConfigValue'''.
 +
 
 +
Only '''ConfigItem''' 13 (IsChargerHiZModeEnabled) can be set.
 +
 
 +
== ImportLotusKey ==
 +
Wrapper for [[SMC#DecryptAndImportLotusKey|DecryptAndImportLotusKey SMC]].
 +
 
 +
Takes an input type-0x9 buffer '''DataIn''', an input 16-byte '''AccessKey''', an input 16-byte '''KeySource''' and an input u32 '''Version''' (0 for normal keys or 1 for extended keys).
 +
 
 +
Decrypts '''DataIn''' with a key generated from '''AccessKey''' and '''KeySource''' and imports it for later usage.
 +
 
 +
[5.0.0+] The '''Version''' argument was removed and this now calls the [[SMC#ReencryptDeviceUniqueData|ReencryptDeviceUniqueData SMC]] instead.
 +
 
 +
== DecryptLotusMessage ==
 +
Takes 3 input type-0x9 buffers '''DataIn''', '''ModIn''' and '''LabelHashIn'''.
 +
 
 +
Uses the [[SMC#ModularExponentiateByStorageKey|ModularExponentiateByStorageKey SMC]] to decrypt '''DataIn''' using the private key imported with [[#ImportLotusKey]] and the supplied '''ModIn''' and '''LabelHashIn'''.
 +
 
 +
== IsDevelopment ==
 +
No input. Returns an output u8 bool.
 +
 
 +
Uses [[#GetConfig]] internally.
 +
 
 +
== GenerateSpecificAesKey ==
 +
Wrapper for [[SMC#GenerateSpecificAesKey|GenerateSpecificAesKey SMC]].
 +
 
 +
Takes an input 16-byte '''KeySource''' and two input u32s '''Generation''' and '''Option'''. Returns an output 16-byte '''AesKey'''.
 +
 
 +
== DecryptDeviceUniqueData ==
 +
Wrapper for [[SMC#DecryptDeviceUniqueData|DecryptDeviceUniqueData SMC]].
 +
 
 +
Takes an output type-0xA buffer '''DataOut''', an input type-0x9 '''DataIn''', an input 16-byte '''AccessKey''', an input 16-byte '''KeySource''' and an input u32 '''Version''' (0 for normal keys or 1 for extended keys).
 +
 
 +
Decrypts '''DataIn''' into '''DataOut''' with a key generated from '''AccessKey''' and '''KeySource'''.
 +
 
 +
Used by [[SSL_services|SSL]] for TLS client-privk.
 +
 
 +
[5.0.0+] The '''Version''' argument was removed.
 +
 
 +
== DecryptAesKey ==
 +
Takes an input 16-byte '''KeySource''' and two input u32s '''Generation''' and '''Option'''. Returns an output 16-byte '''AesKey'''.
 +
 
 +
Decrypts (AES-ECB) '''KeySource''' with a key set with [[SMC#LoadAesKey|LoadAesKey SMC]].
 +
 
 +
[2.0.0+] Introduced same keyslot allocation code as for [[#GenerateAesKey]].
 +
 
 +
== CryptAesCtr ==
 +
Takes an output type-0x46 buffer '''DataOut''', an input u32 '''Keyslot''', an input type-0x45 buffer '''DataIn''' and an input 16-byte '''IvCtr'''.
 +
 
 +
Uses [[SMC#ComputeAes|ComputeAes SMC]] to decrypt '''DataIn''' into '''DataOut''' using the key set in the specified '''Keyslot'''.
 +
 
 +
[2.0.0+] Verifies the keyslot was allocated by the current session.
 +
 
 +
== ComputeCmac ==
 +
Wrapper for [[SMC#ComputeCmac|ComputeCmac SMC]].
 +
 
 +
Takes an input type-0x9 buffer '''DataIn''' and an input u32 '''Keyslot'''. Returns an output 16-byte '''Cmac'''.
 +
 
 +
[2.0.0+] Verifies the keyslot was allocated by the current session.
 +
 
 +
== ImportEsKey ==
 +
Wrapper for [[SMC#DecryptAndImportEsDeviceKey|DecryptAndImportEsDeviceKey SMC]].
 +
 
 +
Takes an input type-0x9 buffer '''DataIn''', an input 16-byte '''AccessKey''', an input 16-byte '''KeySource''' and an input u32 '''Version''' (0 for normal keys or 1 for extended keys).
 +
 
 +
Decrypts '''DataIn''' with a key generated from '''AccessKey''' and '''KeySource''' and imports it for later usage.
 +
 
 +
[5.0.0+] The '''Version''' argument was removed and this now calls the [[SMC#ReencryptDeviceUniqueData|ReencryptDeviceUniqueData SMC]] instead.
 +
 
 +
== UnwrapTitleKey ==
 +
Wrapper for [[SMC#PrepareEsDeviceUniqueKey|PrepareEsDeviceUniqueKey SMC]].
 +
 
 +
Takes an output type-0xA buffer '''DataOut''' and 3 input type-0x9 buffers '''DataIn''', '''ModIn''' and '''LabelHashIn'''. Returns an output u32 '''DataOutSize'''.
 +
 
 +
[3.0.0+] Now takes an input u32 '''Generation'''.
 +
 
 +
Decrypts '''DataIn''' into '''DataOut''' using the private key imported with [[#ImportEsKey]] and the supplied '''ModIn'''. Afterwards, verifies RSA-OAEP encoding using '''LabelHashIn'''.
 +
 
 +
== LoadTitleKey ==
 +
Wrapper for [[SMC#LoadPreparedAesKey|LoadPreparedAesKey SMC]].
 +
 
 +
Takes an input u32 '''Keyslot''' and an input 16-byte '''AccessKey'''.
 +
 
 +
[2.0.0+] Verifies the keyslot was allocated in the current session.
 +
 
 +
== UnwrapCommonTitleKey ==
 +
Wrapper for [[SMC#PrepareEsCommonKey|PrepareEsCommonKey SMC]].
 +
 
 +
Takes an input 16-byte '''KeySource'''. Returns an output 16-byte '''AccessKey'''.
 +
 
 +
[3.0.0+] Now takes an input u32 '''Generation'''.
 +
 
 +
== AllocateAesKeyslot ==
 +
Returns an output u32 '''Keyslot'''.
 +
 
 +
Returns error 0xD01A if all keyslots are taken.
 +
 
 +
== DeallocateAesKeySlot ==
 +
Takes an input u32 '''Keyslot'''.
 +
 
 +
Returns error 0xD21A if the keyslot wasn't allocated by current session.
 +
 
 +
== GetAesKeyslotAvailableEvent ==
 +
Returns an output event handle for synchronizing with the AES keyslots.
 +
 
 +
== SetBootReason ==
 +
Takes an input u32 '''BootReason'''.
 +
 
 +
[4.0.0+] Returns 0xD41A if a value has been previously set without being [[#GetBootReason|gotten]].
 +
 
 +
== GetBootReason ==
 +
Returns an output u32 '''BootReason'''.
 +
 
 +
[4.0.0+] Returns 0xD61A if a value has not previously been set and unsets the value after getting it.
 +
 
 +
== LoadPreparedAesKey ==
 +
Same as [[#LoadTitleKey|LoadTitleKey]].
 +
 
 +
= spl:mig =
 +
This is "nn::spl::detail::ICryptoInterface".
 +
 
 +
{| class="wikitable" border="1"
 
|-
 
|-
| 5 || [[#SetConfig]] || wrapper for [[SMC#SetConfig|SetConfig]]
+
! Cmd || Name
 
|-
 
|-
| 7 || [[#GetRandomBytes]] || uses [[SMC#PrngX931|PrngX931]]
+
| 0 || [[#GetConfig]]
 
|-
 
|-
| 9 || || wrapper for [[SMC#ImportParamsForFWithXY|ImportParamsForFWithXY]]
+
| 1 || [[#ModularExponentiate]]
 
|-
 
|-
| 10 || || wrapper for [[SMC#ExpMod|ExpMod]]
+
| 5 || [[#SetConfig]]
 
|-
 
|-
| 11 || [[#IsDevelopment]] ||
+
| 7 || [[#GenerateRandomBytes]]
 
|-
 
|-
| 12 || GenerateSpecificAesKey || wrapper for [[SMC#KeygenA|KeygenA]]
+
| 11 || [[#IsDevelopment]]
 
|-
 
|-
| 13 || [[#DecryptExpModParamsWithXY]] || wrapper for [[SMC#DecryptExpModParamsWithXY|DecryptExpModParamsWithXY]]
+
| 24 || [3.0.0+] [[#SetBootReason]]
 
|-
 
|-
| 14 || [[#DecryptAesKey]] || decrypts 0x10 bytes using AES ECB, uses [[SMC#SetKeyslotFromXY|SetKeyslotFromXY]] with fixed X and Y
+
| 25 || [3.0.0+] [[#GetBootReason]]
 
|-
 
|-
| 15 || [[#DecryptAesCtr]] || wrapper for [[SMC#SymmetricCrypto|SymmetricCrypto]]
+
| 2 || [[#GenerateAesKek]]
 
|-
 
|-
| 16 || [[#ComputeCmac]] || wrapper for [[SMC#CMAC|CMAC]]
+
| 3 || [[#LoadAesKey]]
 
|-
 
|-
| 17 || || wrapper for [[SMC#ImportParamsFor10WithXY|ImportParamsFor10WithXY]]
+
| 4 || [[#GenerateAesKey]]
 
|-
 
|-
| 18 || || wrapper for [[SMC#ExpModAndKeygenAndSealZ|ExpModAndKeygenAndSealZ]]
+
| 14 || [[#DecryptAesKey]]
 
|-
 
|-
| 19 || [[#SetKeyslotFromZ]] || wrapper for [[SMC#SetKeyslotFromZ|SetKeyslotFromZ]]
+
| 15 || [[#CryptAesCtr]]
 
|-
 
|-
| 20 || [2.0.0+] || wrapper for [[SMC#KeygenAndSealZ|KeygenAndSealZ]]
+
| 16 || [[#ComputeCmac]]
 
|-
 
|-
| 21 || [2.0.0+] [[#LockAesEngine]] ||
+
| 21 || [2.0.0+] [[#AllocateAesKeyslot]]
 
|-
 
|-
| 22 || [2.0.0+] [[#UnlockAesEngine]] ||
+
| 22 || [2.0.0+] [[#DeallocateAesKeySlot]]
 
|-
 
|-
| 23 || [2.0.0+] GetSplWaitEvent ||
+
| 23 || [2.0.0+] [[#GetAesKeyslotAvailableEvent]]
 
|}
 
|}
   −
== GetConfig ==
+
= spl:fs =
Takes an input word (ConfigItem), and returns a u64 with the config params.
+
This is "nn::spl::detail::IFsInterface".
    
{| class="wikitable" border="1"
 
{| class="wikitable" border="1"
 
|-
 
|-
! ConfigItem || Name
+
! Cmd || Name
 +
|-
 +
| 0 || [[#GetConfig]]
 +
|-
 +
| 1 || [[#ModularExponentiate]]
 +
|-
 +
| 5 || [[#SetConfig]]
 +
|-
 +
| 7 || [[#GenerateRandomBytes]]
 +
|-
 +
| 11 || [[#IsDevelopment]]
 +
|-
 +
| 24 || [3.0.0+] [[#SetBootReason]]
 +
|-
 +
| 25 || [3.0.0+] [[#GetBootReason]]
 +
|-
 +
| 2 || [[#GenerateAesKek]]
 
|-
 
|-
| 1 || DisableProgramVerification
+
| 3 || [[#LoadAesKey]]
 
|-
 
|-
| 2 || MemoryConfiguration
+
| 4 || [[#GenerateAesKey]]
 
|-
 
|-
| 3 || Returns 0x2C?
+
| 14 || [[#DecryptAesKey]]
 
|-
 
|-
| 4 || Returns 0x02?
+
| 15 || [[#CryptAesCtr]]
 
|-
 
|-
| 5 || HardwareType (0=Icosa, 1=Copper)
+
| 16 || [[#ComputeCmac]]
 
|-
 
|-
| 6 || IsRetail
+
| 21 || [2.0.0+] [[#AllocateAesKeyslot]]
 
|-
 
|-
| 7 || IsRecoveryBoot
+
| 22 || [2.0.0+] [[#DeallocateAesKeySlot]]
 
|-
 
|-
| 8 || DeviceId (byte7 clear)
+
| 23 || [2.0.0+] [[#GetAesKeyslotAvailableEvent]]
 
|-
 
|-
| 9 || BootReason
+
| 9 || [[#ImportLotusKey]]
 
|-
 
|-
| 10 || MemoryArrange
+
| 10 || [[#DecryptLotusMessage]]
 
|-
 
|-
| 11 || IsDebugMode
+
| 12 || [[#GenerateSpecificAesKey]]
 
|-
 
|-
| 12 || KernelMemoryConfiguration
+
| 19 || [[#LoadTitleKey]]
 
|-
 
|-
| 13 || BatteryProfile
+
| 31 || [5.0.0+] GetPackage2Hash
 
|}
 
|}
    +
= spl:ssl =
 +
This is "nn::spl::detail::ISslInterface".
   −
[[PCV_services|PCV]] configures memory profiles based on id2.
   
{| class="wikitable" border="1"
 
{| class="wikitable" border="1"
 
|-
 
|-
! Platform
+
! Cmd || Name
!  Version
+
|-
!  Revision
+
| 0 || [[#GetConfig]]
!  id2
+
|-
 +
| 1 || [[#ModularExponentiate]]
 +
|-
 +
| 5 || [[#SetConfig]]
 
|-
 
|-
| "jetson-tx1"
+
| 7 || [[#GenerateRandomBytes]]
| "11_40800_01_V9.8.3_V1.6"
  −
| N/A
  −
|  N/A
   
|-
 
|-
| "nx-abcb"
+
| 11 || [[#IsDevelopment]]
| "10_40800_NoCfgVersion_V9.8.4_V1.6"
  −
| 0
  −
|  0
   
|-
 
|-
| "nx-abca2"
+
| 24 || [3.0.0+] [[#SetBootReason]]
| "10_40800_NoCfgVersion_V9.8.7_V1.6"
  −
|  0
  −
0 or 3
   
|-
 
|-
| "nx-abca2"
+
| 25 || [3.0.0+] [[#GetBootReason]]
| "10_40800_NoCfgVersion_V9.8.7_V1.6"
  −
|  1
  −
|  4
   
|-
 
|-
| "nx-abca2"
+
| 2 || [[#GenerateAesKek]]
| "10_40800_NoCfgVersion_V9.8.7_V1.6"
  −
|  2
  −
| 1
   
|-
 
|-
| "nx-abca2"
+
| 3 || [[#LoadAesKey]]
| "10_40800_NoCfgVersion_V9.8.7_V1.6"
  −
|  3
  −
| 2
   
|-
 
|-
 +
| 4 || [[#GenerateAesKey]]
 +
|-
 +
| 14 || [[#DecryptAesKey]]
 +
|-
 +
| 15 || [[#CryptAesCtr]]
 +
|-
 +
| 16 || [[#ComputeCmac]]
 +
|-
 +
| 21 || [2.0.0+] [[#AllocateAesKeyslot]]
 +
|-
 +
| 22 || [2.0.0+] [[#DeallocateAesKeySlot]]
 +
|-
 +
| 23 || [2.0.0+] [[#GetAesKeyslotAvailableEvent]]
 +
|-
 +
| 13 || [[#DecryptDeviceUniqueData]]
 +
|-
 +
| 26 || [5.0.0+] DecryptAndStoreSslClientCertKey
 +
|-
 +
| 27 || [5.0.0+] ModularExponentiateWithSslClientCertKey
 
|}
 
|}
    +
= spl:es =
 +
This is "nn::spl::detail::IEsInterface".
   −
[[Process Manager services|PM]] checks id1 and if non-zero, calls fsp-pr SetEnabledProgramVerification(false).
+
{| class="wikitable" border="1"
 
+
|-
[[NIM_services|NIM]] checks that id8 output must match the [[Settings_services|set:cal]] DeviceId with byte7 cleared, otherwise panic.
+
! Cmd || Name
 
+
|-
[3.0.0+] [[Loader services|RO]] checks id11, if set then skipping NRR rsa signatures is allowed.
+
| 0 || [[#GetConfig]]
 
+
|-
Kernel uses id11 to determine behavior of svcBreak positive arguments. It will break instead of just force-exiting the process which is what happens on retail.
+
| 1 || [[#ModularExponentiate]]
 
+
|-
Kernel reads id12 when setting up memory-related code. If bit0 is set, it will memset various allocated memory-regions with 0x58, 0x59, 0x5A ('X', 'Y', 'Z') instead of zero. This allows Nintendo devs to find uninitialized memory bugs. If bit17-16 is 0b01, the kernel assumes 6GB of DRAM instead of 4GB.
+
| 5 || [[#SetConfig]]
 
+
|-
== GenerateAesKek ==
+
| 7 || [[#GenerateRandomBytes]]
Takes a 16-byte seed ("BisEncryptionKeySourceForKek") and two words ("KeyGeneration" and "option") as input.
+
|-
KeyGeneration ranges from 0 to 2.
+
| 11 || [[#IsDevelopment]]
 
+
|-
Same input gives same output. Output changes when system is rebooted.
+
| 24 || [3.0.0+] [[#SetBootReason]]
 +
|-
 +
| 25 || [3.0.0+] [[#GetBootReason]]
 +
|-
 +
| 2 || [[#GenerateAesKek]]
 +
|-
 +
| 3 || [[#LoadAesKey]]
 +
|-
 +
| 4 || [[#GenerateAesKey]]
 +
|-
 +
| 14 || [[#DecryptAesKey]]
 +
|-
 +
| 15 || [[#CryptAesCtr]]
 +
|-
 +
| 16 || [[#ComputeCmac]]
 +
|-
 +
| 21 || [2.0.0+] [[#AllocateAesKeyslot]]
 +
|-
 +
| 22 || [2.0.0+] [[#DeallocateAesKeySlot]]
 +
|-
 +
| 23 || [2.0.0+] [[#GetAesKeyslotAvailableEvent]]
 +
|-
 +
| 13 || [[#DecryptDeviceUniqueData]]
 +
|-
 +
| 17 || [[#ImportEsKey]]
 +
|-
 +
| 18 || [[#UnwrapTitleKey]]
 +
|-
 +
| 20 || [2.0.0+] [[#PrepareEsCommonKey]]
 +
|-
 +
| 28 || [5.0.0+] DecryptAndStoreDrmDeviceCertKey
 +
|-
 +
| 29 || [5.0.0+] ModularExponentiateWithDrmDeviceCertKey
 +
|-
 +
| 31 || [6.0.0+] PrepareEsArchiveKey
 +
|-
 +
| 32 || [6.0.0+] [[#LoadPreparedAesKey]]
 +
|}
   −
== LoadAesKey ==
+
= spl:manu =
[2.0.0+] Now verifies that the engine used (0..3) is locked/owned by the current spl session, otherwise errors with 0xD21A. Previously engine was hardcoded to 0.
+
This is "nn::spl::detail::IManuInterface".
 
  −
== GenerateAesKey ==
  −
[2.0.0+] Previously it used engine 0 always. Now it tries to allocate an engine to be used, returns 0xD01A if they're all busy. After command is done, the engine is released.
  −
 
  −
== SetConfig ==
  −
Takes two input words, a ConfigItem and the value to set.
      
{| class="wikitable" border="1"
 
{| class="wikitable" border="1"
 
|-
 
|-
! ConfigItem || Name
+
! Cmd || Name
 +
|-
 +
| 0 || [[#GetConfig]]
 
|-
 
|-
| 13 || BatteryProfile
+
| 1 || [[#ModularExponentiate]]
 +
|-
 +
| 5 || [[#SetConfig]]
 +
|-
 +
| 7 || [[#GenerateRandomBytes]]
 +
|-
 +
| 11 || [[#IsDevelopment]]
 +
|-
 +
| 24 || [3.0.0+] [[#SetBootReason]]
 +
|-
 +
| 25 || [3.0.0+] [[#GetBootReason]]
 +
|-
 +
| 2 || [[#GenerateAesKek]]
 +
|-
 +
| 3 || [[#LoadAesKey]]
 +
|-
 +
| 4 || [[#GenerateAesKey]]
 +
|-
 +
| 14 || [[#DecryptAesKey]]
 +
|-
 +
| 15 || [[#CryptAesCtr]]
 +
|-
 +
| 16 || [[#ComputeCmac]]
 +
|-
 +
| 21 || [2.0.0+] [[#AllocateAesKeyslot]]
 +
|-
 +
| 22 || [2.0.0+] [[#DeallocateAesKeySlot]]
 +
|-
 +
| 23 || [2.0.0+] [[#GetAesKeyslotAvailableEvent]]
 +
|-
 +
| 13 || [[#DecryptDeviceUniqueData]]
 +
|-
 +
| 30 || [5.0.0+] ReencryptDeviceUniqueData
 
|}
 
|}
   −
== IsDevelopment ==
+
[[Category:Services]]
No input params.
  −
 
  −
Uses [[#GetConfig]] internally with id=6. Returns true if output from that is 0, or if the SMC returned error 2.
  −
 
  −
Returns an u8 flag for whether the system is devunit. Output flag is 0 on retail.
  −
 
  −
== DecryptExpModParamsWithXY ==
  −
Last SPL cmd used by [[SSL_services|SSL]]-sysmodule for TLS client-privk.
  −
 
  −
== DecryptAesKey ==
  −
Scrambles with a different constant than non-"other" version.
  −
 
  −
[2.0.0+] Introduced same engine allocation code as for [[#GenerateAesKey]].
  −
 
  −
== DecryptAesCtr ==
  −
[2.0.0+] Verifies the engine is locked by current session, same change as [[#LoadAesKey]].
  −
 
  −
== ComputeCmac ==
  −
[2.0.0+] Verifies the engine is locked by current session, same change as [[#LoadAesKey]].
  −
 
  −
== SetKeyslotFromZ ==
  −
[2.0.0+] Verifies the engine is locked by current session, same change as [[#LoadAesKey]].
  −
 
  −
== LockAesEngine ==
  −
Returns the id of the engine that was locked, or 0xD01A if all engines are busy. You need to lock an engine before using AES functions.
  −
 
  −
== UnlockAesEngine ==
  −
Takes a single u32 and unlocks the engine with that id. It must be owned by current session otherwise 0xD21A will be returned.