mirror of
https://github.com/rvtr/unlaunch-installer_dev.git
synced 2026-01-26 13:43:08 -05:00
36 lines
848 B
C
36 lines
848 B
C
/* f_xy.h
|
|
*
|
|
* This file was imported from godmode9i, but it is liely not the
|
|
* original source. twltool uses the same file.
|
|
*
|
|
* If you happen to know whom to credit I'd love to add the name
|
|
*
|
|
* Refactored to reduce the pointer casts and remove the dependency
|
|
* from tonccpy.
|
|
*/
|
|
|
|
#ifndef _H_F_XY
|
|
#define _H_F_XY
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/************************ Constants / Defines *********************************/
|
|
|
|
extern const uint8_t DSi_KEY_MAGIC[16];
|
|
extern const uint8_t DSi_NAND_KEY_Y[16];
|
|
extern const uint8_t DSi_ES_KEY_Y[16];
|
|
extern const uint8_t DSi_BOOT2_KEY[16];
|
|
|
|
/************************ Function Protoypes **********************************/
|
|
|
|
void F_XY(uint8_t *key, const uint8_t *key_x, const uint8_t *key_y);
|
|
void F_XY_reverse(const uint8_t *key, uint8_t *key_xy);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|