AES icon indicating copy to clipboard operation
AES copied to clipboard

AES for microcontrollers (Arduino & Raspberry pi)

Results 11 AES issues
Sort by recently updated
recently updated
newest added

Hi, excellent work. How can i get this to work on the Arduino Zero? I simply want to: - encrypt a string -Send string to another arduino zero -Decrypt the...

Hello, I am playing with your library and planning to use it in my IoT esp8266 communication with the server using the java. So on one side, Java is used...

**Error in platform selection** The if statement doesn't set the correct .h file: `#if (defined(__linux) || defined(linux)) && !(defined(__ARDUINO_X86__) || defined(__arm__))` when doing in Raspberry Pi: ``` sudo make install...

bug
Approved

So I followed the steps you have in the readme to install the library and run it on a raspberry pi. However when I try to run the aes.cpp (with...

bug

**Plain2 check** Execution after changing to 3 iterations ` for (int i=0;i

bug
enhancement
Approved

I would just like to ask if the library uses PKCS5? It isn't explicitly noted anywhere I think, although my guess is that it uses PKCS5? The library can decode...

since there is an increased demand for the library, and there are some incompatibilities i am writing a wrapper framework for all my Crypt libraries so they can be used...

help wanted

This works perfect in arduino mega. But when I use it in arduino due, there are several 'printf_P' error: > AES.cpp:532:46: error: 'printf_P' was not declared in this scope

Hi, thank you for your work :) Environment : ESP8266 12E I tested your librairy 3 times on the same string, but the results are not the same on each....

Messages passed are byte arrays. There is no hint the array is NULL terminated string. Especially that length is given explicitly. Code should not assume final character is terminator in...