summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkokke <spam@rowdy.dk>2017-11-10 20:23:26 +0100
committerGitHub <noreply@github.com>2017-11-10 20:23:26 +0100
commit835777b96f0b1fb78520430fd4e81a1f1d47a0e5 (patch)
tree6b5803240aeabec233b08746053a39e6dd412eaf
parentUpdate README.md (diff)
downloadtiny-AES-c-835777b96f0b1fb78520430fd4e81a1f1d47a0e5.tar
tiny-AES-c-835777b96f0b1fb78520430fd4e81a1f1d47a0e5.tar.gz
tiny-AES-c-835777b96f0b1fb78520430fd4e81a1f1d47a0e5.tar.bz2
tiny-AES-c-835777b96f0b1fb78520430fd4e81a1f1d47a0e5.tar.lz
tiny-AES-c-835777b96f0b1fb78520430fd4e81a1f1d47a0e5.tar.xz
tiny-AES-c-835777b96f0b1fb78520430fd4e81a1f1d47a0e5.tar.zst
tiny-AES-c-835777b96f0b1fb78520430fd4e81a1f1d47a0e5.zip
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index bdae7a2..91df482 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ GCC size output when only ECB mode is compiled for ARM (using 128 bit block size
$ arm-none-eabi-gcc -Os -c aes.c -DCBC=0
$ size aes.o
text data bss dec hex filename
- 2071 0 184 2255 8cf aes.o
+ 2015 0 184 2199 897 aes.o
.. and when compiling for the THUMB instruction set, we end up just above 1.7K in code size.