diff options
author | kokke <spam@rowdy.dk> | 2014-05-30 14:25:47 +0200 |
---|---|---|
committer | kokke <spam@rowdy.dk> | 2014-05-30 14:25:47 +0200 |
commit | 35b50199ef329e656053b856d42931cfa50a9a02 (patch) | |
tree | f809394545252ece731a88d504a300e5dd8acfd7 | |
parent | Rename README to README.md (diff) | |
download | tiny-AES-c-35b50199ef329e656053b856d42931cfa50a9a02.tar tiny-AES-c-35b50199ef329e656053b856d42931cfa50a9a02.tar.gz tiny-AES-c-35b50199ef329e656053b856d42931cfa50a9a02.tar.bz2 tiny-AES-c-35b50199ef329e656053b856d42931cfa50a9a02.tar.lz tiny-AES-c-35b50199ef329e656053b856d42931cfa50a9a02.tar.xz tiny-AES-c-35b50199ef329e656053b856d42931cfa50a9a02.tar.zst tiny-AES-c-35b50199ef329e656053b856d42931cfa50a9a02.zip |
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -# H3 Tiny AES128 in C +### Tiny 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. 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 1079 0 204 1283 503 aes.o +` |