Cubecell aes ecb encryption

Hello.

Is there a library for aes ecb encryption on Cubecell?

In Arduino IDE, AESLib v1.0.5 worked for my HTCC-AB01-v2. It is old enough to not require c++11.

Hi,

There is an aes.h and aes.c included in the heltec libraries. Seems to provide a pretty decent aes implementation. I had to do the following to get it working:
extern “C” {
#include “aes.h”
#include “aes.c”
}

Hey Zelfie,

That is rather odd as I had a project running the same boards and AESLib didnt work for me! I must have mucked up something…