Commit 35b50199 authored by kokke's avatar kokke
Browse files

Update README.md

parent 75d7b8b9
# H3 Tiny AES128 in C ### Tiny AES128 in C
This is a small portable (and slow?) implementation of AES128 in C. This is a small portable (and slow?) implementation of AES128 in C.
...@@ -10,10 +10,12 @@ YMMV depending on target platform and optimization skills of your compiler. ...@@ -10,10 +10,12 @@ YMMV depending on target platform and optimization skills of your compiler.
GCC size output when compiled for ARM: GCC size output when compiled for ARM:
`
$ arm-none-eabi-gcc -Os -c aes.c -o aes.o $ arm-none-eabi-gcc -Os -c aes.c -o aes.o
$ size aes.o $ size aes.o
text data bss dec hex filename text data bss dec hex filename
1079 0 204 1283 503 aes.o 1079 0 204 1283 503 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