From baafab0a56a85950a2dcfbfb47bc9527910e0937 Mon Sep 17 00:00:00 2001 From: kokke Date: Thu, 29 May 2014 02:43:12 +0200 Subject: Update README --- README | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README b/README index efcc1ba..bb2da73 100644 --- a/README +++ b/README @@ -1,5 +1,14 @@ 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. -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 + -- cgit v1.2.3