Skip to content

Commit 633b340

Browse files
committed
wolfSSL: Reduced number of modules compiled-in
1 parent b25ed5a commit 633b340

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

apps/wolfssl/Makefile.wolfssl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,8 @@ $(info CFLAGS: $(CFLAGS))
99
#source common to all targets
1010

1111
wolfssl_src += $(WOLFSSL_ROOT)/wolfcrypt/src/aes.c \
12-
$(WOLFSSL_ROOT)/wolfcrypt/src/arc4.c \
1312
$(WOLFSSL_ROOT)/wolfcrypt/src/asm.c \
1413
$(WOLFSSL_ROOT)/wolfcrypt/src/asn.c \
15-
$(WOLFSSL_ROOT)/wolfcrypt/src/blake2b.c \
16-
$(WOLFSSL_ROOT)/wolfcrypt/src/camellia.c \
1714
$(WOLFSSL_ROOT)/wolfcrypt/src/chacha.c \
1815
$(WOLFSSL_ROOT)/wolfcrypt/src/chacha20_poly1305.c \
1916
$(WOLFSSL_ROOT)/wolfcrypt/src/cmac.c \
@@ -38,15 +35,12 @@ wolfssl_src += $(WOLFSSL_ROOT)/wolfcrypt/src/aes.c \
3835
$(WOLFSSL_ROOT)/wolfcrypt/src/idea.c \
3936
$(WOLFSSL_ROOT)/wolfcrypt/src/integer.c \
4037
$(WOLFSSL_ROOT)/wolfcrypt/src/logging.c \
41-
$(WOLFSSL_ROOT)/wolfcrypt/src/md2.c \
42-
$(WOLFSSL_ROOT)/wolfcrypt/src/md4.c \
4338
$(WOLFSSL_ROOT)/wolfcrypt/src/md5.c \
4439
$(WOLFSSL_ROOT)/wolfcrypt/src/memory.c \
4540
$(WOLFSSL_ROOT)/wolfcrypt/src/pkcs12.c \
4641
$(WOLFSSL_ROOT)/wolfcrypt/src/pkcs7.c \
4742
$(WOLFSSL_ROOT)/wolfcrypt/src/poly1305.c \
4843
$(WOLFSSL_ROOT)/wolfcrypt/src/pwdbased.c \
49-
$(WOLFSSL_ROOT)/wolfcrypt/src/rabbit.c \
5044
$(WOLFSSL_ROOT)/wolfcrypt/src/random.c \
5145
$(WOLFSSL_ROOT)/wolfcrypt/src/ripemd.c \
5246
$(WOLFSSL_ROOT)/wolfcrypt/src/rsa.c \

examples/dtls/user_settings.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@
5454
#define NO_MD4
5555
#define NO_RABBIT
5656
#define NO_HC128
57+
#define NO_RC4
58+
#define NO_DES3
5759

5860
#include <stdlib.h>
5961
#include "contiki-net.h"

examples/ssl-client/user_settings.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@
5252
#define NO_MD4
5353
#define NO_RABBIT
5454
#define NO_HC128
55+
#define NO_RC4
56+
#define NO_DES3
5557

5658
#include <stdlib.h>
5759
#include "contiki-net.h"

examples/ssl-server/user_settings.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@
5252
#define NO_MD4
5353
#define NO_RABBIT
5454
#define NO_HC128
55+
#define NO_RC4
56+
#define NO_DES3
57+
5558

5659
#include <stdlib.h>
5760
#include "contiki-net.h"

0 commit comments

Comments
 (0)