mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-02 16:59:03 +00:00
9 lines
167 B
C
9 lines
167 B
C
#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);
|