Skip to content

Commit

Permalink
c backend rewrite, aes replaces cipher
Browse files Browse the repository at this point in the history
  • Loading branch information
smurfd committed Jan 8, 2025
1 parent 115ac5f commit 2f0f8ab
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 441 deletions.
9 changes: 3 additions & 6 deletions lotordb/src/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
CC := gcc -O3 -Wall -pedantic -std=c99
BUILD:=.build

all: mkbuilddir hash aes ciphers keys db_keystore db_tables crypto crypto_server crypto_client test
local: mkbuilddir hash aes ciphers keys db_keystore db_tables crypto crypto_server crypto_client test_local
all: mkbuilddir hash aes keys db_keystore db_tables crypto crypto_server crypto_client test
local: mkbuilddir hash aes keys db_keystore db_tables crypto crypto_server crypto_client test_local

mkbuilddir:
mkdir -p ${BUILD}
Expand Down Expand Up @@ -30,9 +30,6 @@ hash:
db_tables:
${CC} -c db_tables.c -o ${BUILD}/db_tables.o

ciphers:
${CC} -c ciphers.c -o ${BUILD}/ciphers.o

keys:
${CC} -c keys.c -o ${BUILD}/keys.o

Expand All @@ -48,4 +45,4 @@ test_local:
clean:
rm ${BUILD}/crypto.o ${BUILD}/keys_client.o ${BUILD}/tables_client.o ${BUILD}/tests ${BUILD}/ciphers_aes_gcm.o \
${BUILD}/crypto_client.o ${BUILD}/tables_server.o ${BUILD}/keys_server.o ${BUILD}/crypto_server.o ${BUILD}/db_keystore.o \
${BUILD}/hash.o ${BUILD}/hash_tooling.o ${BUILD}/db_tables.o ${BUILD}/ciphers.o ${BUILD}/keys.o ${BUILD}/aes.o ${BUILD}/*bin.b
${BUILD}/hash.o ${BUILD}/hash_tooling.o ${BUILD}/db_tables.o ${BUILD}/keys.o ${BUILD}/aes.o ${BUILD}/*bin.b
310 changes: 0 additions & 310 deletions lotordb/src/ciphers.c

This file was deleted.

Loading

0 comments on commit 2f0f8ab

Please sign in to comment.