2018-04-10 22:56:45 +01:00
|
|
|
#ifndef FUSEE_KEYDERIVATION_H
|
|
|
|
#define FUSEE_KEYDERIVATION_H
|
|
|
|
|
2018-05-11 22:01:13 +01:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
2018-05-17 14:56:02 +01:00
|
|
|
#include "masterkey.h"
|
2018-04-10 22:56:45 +01:00
|
|
|
|
2018-05-11 22:01:13 +01:00
|
|
|
typedef enum BisPartition {
|
2018-04-10 22:56:45 +01:00
|
|
|
BisPartition_Calibration = 0,
|
2018-04-25 17:47:39 +01:00
|
|
|
BisPartition_Safe = 1,
|
2018-05-11 22:01:13 +01:00
|
|
|
BisPartition_UserSystem = 2,
|
|
|
|
} BisPartition;
|
2018-04-10 22:56:45 +01:00
|
|
|
|
2018-05-16 09:06:59 +01:00
|
|
|
typedef struct {
|
|
|
|
uint8_t keys[9][0x10];
|
|
|
|
} nx_dec_keyblob_t;
|
|
|
|
|
2018-05-11 22:01:13 +01:00
|
|
|
typedef struct nx_keyblob_t {
|
|
|
|
uint8_t mac[0x10];
|
|
|
|
uint8_t ctr[0x10];
|
2018-04-10 22:56:45 +01:00
|
|
|
union {
|
2018-05-11 22:01:13 +01:00
|
|
|
uint8_t data[0x90];
|
2018-05-16 09:06:59 +01:00
|
|
|
nx_dec_keyblob_t dec_blob;
|
2018-04-10 22:56:45 +01:00
|
|
|
};
|
|
|
|
} nx_keyblob_t;
|
|
|
|
|
2018-05-14 20:17:06 +01:00
|
|
|
/* TSEC fw must be 0x100-byte-aligned. */
|
2018-05-14 01:40:35 +01:00
|
|
|
int derive_nx_keydata(uint32_t target_firmware, const nx_keyblob_t *keyblobs, uint32_t available_revision, const void *tsec_fw, size_t tsec_fw_size);
|
2018-05-16 09:06:59 +01:00
|
|
|
int load_package1_key(uint32_t revision);
|
2018-05-11 22:01:13 +01:00
|
|
|
void finalize_nx_keydata(uint32_t target_firmware);
|
2018-04-10 22:56:45 +01:00
|
|
|
|
2018-05-11 22:01:13 +01:00
|
|
|
void derive_bis_key(void *dst, BisPartition partition_id, uint32_t target_firmware);
|
2018-04-10 22:56:45 +01:00
|
|
|
|
2018-05-11 22:01:13 +01:00
|
|
|
#endif
|