mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-26 12:12:02 +00:00
18 lines
306 B
C
18 lines
306 B
C
|
#pragma once
|
||
|
|
||
|
#ifndef __SET_EXT_H__
|
||
|
#define __SET_EXT_H__
|
||
|
|
||
|
#include <switch.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);
|
||
|
|
||
|
#endif
|