diff --git a/.gitignore b/.gitignore index 9e76256c..5d93a505 100644 --- a/.gitignore +++ b/.gitignore @@ -41,12 +41,18 @@ /psk/server-psk /psk/server-tcp +/tls/client-callback /tls/client-tls-nonblocking /tls/client-tls-resume /tls/client-tls /tls/client-tcp +/tls/server-callback /tls/server-tls-nonblocking /tls/server-tls-threaded /tls/server-tls /tls/server-tcp +crypto/3des/3des-file-encrypt +crypto/aes/aes-file-encrypt +crypto/camellia/camellia-encrypt + diff --git a/crypto/3des/Makefile b/crypto/3des/Makefile index 7d8a6356..67e608d4 100644 --- a/crypto/3des/Makefile +++ b/crypto/3des/Makefile @@ -1,6 +1,6 @@ CC=gcc CFLAGS=-Wall -LIBS= -lcyassl +LIBS= -lwolfssl 3des-file-encrypt: 3des-file-encrypt.o $(CC) -o $@ $^ $(CFLAGS) $(LIBS) diff --git a/crypto/aes/Makefile b/crypto/aes/Makefile index 9e36457d..cef21864 100644 --- a/crypto/aes/Makefile +++ b/crypto/aes/Makefile @@ -1,6 +1,6 @@ CC=gcc CFLAGS=-Wall -LIBS= -lcyassl +LIBS= -lwolfssl aes-file-encrypt: aes-file-encrypt.o $(CC) -o $@ $^ $(CFLAGS) $(LIBS)