Skip to content

Commit d764a5d

Browse files
Merge pull request #1343 from stineje/main
Add AES C code used to debug Chapter 18 K additions
2 parents 49061a4 + 0c9cfac commit d764a5d

File tree

2 files changed

+654
-0
lines changed

2 files changed

+654
-0
lines changed

examples/crypto/aes/Makefile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
CC = gcc
2+
CFLAGS = -g
3+
4+
all: aes
5+
6+
aes: aes.c
7+
$(CC) $(CFLAGS) aes.c -o aes
8+
9+
clean:
10+
rm -rf aes
11+
rm -f *~
12+
13+
.PHONY: all clean

0 commit comments

Comments
 (0)