mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 00:39:14 +00:00
14 lines
302 B
C
14 lines
302 B
C
#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; |