mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-06 16:59:03 +00:00
[makerom] cleaned up RSA keys
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
#include <stdint.h>
|
||||
|
||||
typedef struct CtrRsa2048Key {
|
||||
uint8_t modulus[0x100];
|
||||
uint8_t priv_exponent[0x100];
|
||||
//uint8_t pub_exponent[0x3];
|
||||
} CtrRsa2048Key;
|
||||
|
||||
typedef struct CtrRsa4096Key {
|
||||
uint8_t modulus[0x200];
|
||||
uint8_t priv_exponent[0x200];
|
||||
//uint8_t pub_exponent[0x3];
|
||||
} CtrRsa4096Key;
|
||||
Reference in New Issue
Block a user