initial commit

This commit is contained in:
TLINDEN
2015-09-01 22:53:00 +02:00
parent 9f58440588
commit 71ec0f780f
10 changed files with 886 additions and 2 deletions

19
sbox/Makefile Normal file
View File

@@ -0,0 +1,19 @@
LDFLAGS = -g
CFLAGS = -g -Wall -Wextra -Werror
DST = gen-static-sbox
OBJS = gen-static-sbox.o
all: $(DST)
$(DST): $(OBJS)
gcc $(LDFLAGS) $(OBJS) -o $(DST)
%.o: %.c
gcc -c $(CFLAGS) $*.c -o $*.o
clean:
rm -f *.o $(DST)
sboxes:
cat BJNR000010949.epub | openssl aes-256-cbc -kfile BJNR000010949.pass | ./$(DST)