Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
Tiny AES C
Commits
35b50199
Commit
35b50199
authored
May 30, 2014
by
kokke
Browse files
Update README.md
parent
75d7b8b9
Changes
1
Show whitespace changes
Inline
Side-by-side
README.md
View file @
35b50199
#
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
`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment