2019-05-12 19:15:23 +02:00
|
|
|
/*
|
2020-04-16 01:04:07 +02:00
|
|
|
* Copyright (c) 2019-2020 shchmue
|
2019-05-12 19:15:23 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2019-03-05 00:05:42 +01:00
|
|
|
#ifndef _KEYS_H_
|
|
|
|
#define _KEYS_H_
|
|
|
|
|
2020-12-04 02:16:55 +01:00
|
|
|
#include <utils/types.h>
|
|
|
|
|
|
|
|
// only tickets of type Rsa2048Sha256 are expected
|
|
|
|
typedef struct {
|
|
|
|
u32 signature_type; // always 0x10004
|
|
|
|
u8 signature[0x100];
|
|
|
|
u8 sig_padding[0x3C];
|
|
|
|
char issuer[0x40];
|
|
|
|
u8 titlekey_block[0x100];
|
|
|
|
u8 format_version;
|
|
|
|
u8 titlekey_type;
|
|
|
|
u16 ticket_version;
|
|
|
|
u8 license_type;
|
|
|
|
u8 common_key_id;
|
|
|
|
u16 property_mask;
|
|
|
|
u64 reserved;
|
|
|
|
u64 ticket_id;
|
|
|
|
u64 device_id;
|
|
|
|
u8 rights_id[0x10];
|
|
|
|
u32 account_id;
|
|
|
|
u32 sect_total_size;
|
|
|
|
u32 sect_hdr_offset;
|
|
|
|
u16 sect_hdr_count;
|
|
|
|
u16 sect_hdr_entry_size;
|
|
|
|
u8 padding[0x140];
|
|
|
|
} ticket_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
u8 rights_id[0x10];
|
|
|
|
u64 ticket_id;
|
|
|
|
u32 account_id;
|
|
|
|
u16 property_mask;
|
|
|
|
u16 reserved;
|
|
|
|
} ticket_record_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
u8 read_buffer[0x40000];
|
|
|
|
u8 rights_ids[0x40000 / 0x10][0x10];
|
|
|
|
u8 titlekeys[0x40000 / 0x10][0x10];
|
|
|
|
} titlekey_buffer_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
u8 private_exponent[0x100];
|
|
|
|
u8 modulus[0x100];
|
|
|
|
u8 public_exponent[4];
|
|
|
|
u8 reserved[0x14];
|
|
|
|
u64 device_id;
|
|
|
|
u8 gmac[0x10];
|
|
|
|
} rsa_keypair_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
u8 master_kek[0x10];
|
|
|
|
u8 data[0x70];
|
|
|
|
u8 package1_key[0x10];
|
|
|
|
} keyblob_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
u8 cmac[0x10];
|
|
|
|
u8 iv[0x10];
|
|
|
|
keyblob_t key_data;
|
|
|
|
u8 unused[0x150];
|
|
|
|
} encrypted_keyblob_t;
|
|
|
|
|
|
|
|
#define TPRINTF(text) \
|
|
|
|
end_time = get_tmr_us(); \
|
|
|
|
gfx_printf(text" done in %d us\n", end_time - start_time); \
|
|
|
|
start_time = get_tmr_us(); \
|
|
|
|
minerva_periodic_training()
|
|
|
|
|
|
|
|
#define TPRINTFARGS(text, args...) \
|
|
|
|
end_time = get_tmr_us(); \
|
|
|
|
gfx_printf(text" done in %d us\n", args, end_time - start_time); \
|
|
|
|
start_time = get_tmr_us(); \
|
|
|
|
minerva_periodic_training()
|
|
|
|
|
|
|
|
// save key wrapper
|
|
|
|
#define SAVE_KEY(name) _save_key(#name, name, sizeof(name), text_buffer)
|
|
|
|
// save key with different name than variable
|
|
|
|
#define SAVE_KEY_VAR(name, varname) _save_key(#name, varname, sizeof(varname), text_buffer)
|
|
|
|
// save key family wrapper
|
|
|
|
#define SAVE_KEY_FAMILY(name, start) _save_key_family(#name, name, start, sizeof(name) / sizeof(name[0]), sizeof(name[0]), text_buffer)
|
|
|
|
// save key family with different name than variable
|
|
|
|
#define SAVE_KEY_FAMILY_VAR(name, varname, start) _save_key_family(#name, varname, start, sizeof(varname) / sizeof(varname[0]), sizeof(varname[0]), text_buffer)
|
|
|
|
|
2019-03-05 00:05:42 +01:00
|
|
|
void dump_keys();
|
|
|
|
|
|
|
|
#endif
|