HW: add AES engine & implement AES-CCM

This commit is contained in:
wwylele 2017-01-01 14:58:02 +02:00
parent 1bf449d752
commit ea1ea0224c
12 changed files with 419 additions and 1 deletions

View file

@ -4,6 +4,7 @@
#include "common/common_types.h"
#include "common/logging/log.h"
#include "core/hw/aes/key.h"
#include "core/hw/gpu.h"
#include "core/hw/hw.h"
#include "core/hw/lcd.h"
@ -85,6 +86,7 @@ void Update() {}
/// Initialize hardware
void Init() {
AES::InitKeys();
GPU::Init();
LCD::Init();
LOG_DEBUG(HW, "initialized OK");