"tests/vscode:/vscode.git/clone" did not exist on "2a620d526f006c03c24246ef12f4f0bd6d9504c6"
Commit baafab0a authored by kokke's avatar kokke
Browse files

Update README

parent 4c374298
This is a small portable (and slow) implementation of AES128 in C. This is a small portable (and slow) implementation of AES128 in C.
AES128 ECB is symmetric, so you use the same function for encrypting and decrypting.
The module uses less than 250 bytes of RAM and ~1.5K ROM. The module uses less than 250 bytes of RAM and ~1.5K ROM.
AES128 ECB is symmetric, so you use the same function for encrypting and decrypting.
GCC size output when compiled for ARM:
$ arm-none-eabi-gcc -Os -c aes.c -o aes.o
$ size aes.o
text data bss dec hex filename
1447 0 204 1651 673 aes.o
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment