Move files around to new directory structure

This commit is contained in:
jakcron
2022-04-13 13:28:31 +08:00
parent 5840526951
commit 9b5ec5a4b7
113 changed files with 1 additions and 1 deletions
+14
View File
@@ -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;