ctrtool: Add support for inline decryption

This commit is contained in:
Michael Scire
2017-05-19 08:34:50 -07:00
parent 7dcc166403
commit 4c63561224
17 changed files with 502 additions and 148 deletions
+8
View File
@@ -0,0 +1,8 @@
#pragma once
#include <stdint.h>
/*
AES Key generator for the Nintendo 3DS (CTR) Consoles
*/
void ctr_aes_keygen(const uint8_t *x, const uint8_t *y, uint8_t *key);