mirror of
https://github.com/shchmue/Lockpick.git
synced 2024-11-16 19:09:16 +01:00
922cf3f4c4
Changed titlekey dump methodology to no longer need reboot. Added SD seed dumping. Reorganized and clarified UI text. Swapped C++-style I/O for C-style. Tightened up dependencies.
12 lines
259 B
C
12 lines
259 B
C
#pragma once
|
|
|
|
#include <switch/result.h>
|
|
|
|
Result setcalInitialize(void);
|
|
void setcalExit(void);
|
|
|
|
/**
|
|
* @brief Gets the extended ETicket RSA-2048 Key from CAL0
|
|
* @param key Pointer to 0x244-byte output buffer.
|
|
*/
|
|
Result setcalGetEticketDeviceKey(void *key); |