I am very new to Arduino Ecosystem. I started exploring on how to encrypt and decrypt a text file containing hex dump of data.
I came across different libraries but none seems to be compiling on Nano 33 BLE.
I get following error
In file included from /home/user/Arduino/libraries/AESLib/src/AES.h:4:0,
from /home/usert/Downloads/AES-master/examples/aes/aes.ino:1:
/home/user/Arduino/libraries/AESLib/src/AES_config.h:37:14: fatal error: pgmspace.h: No such file or directory
#include <pgmspace.h> // probably ESP's PGMSPACE, needs to be mocked for testing
^~~~~~~~~~~~
compilation terminated.
exit status 1
Error compiling for board Arduino Nano 33 BLE.
What is the best way to encrypt and decrypt data on the board or encrypt data on my local machine and decrypt on the Nano 33 BLE hardware?