commit | c387a0dd575de5e607faf77fe02cda845517559f | [log] [tgz] |
---|---|---|
author | Aurelien Jarno <aurelien@aurel32.net> | Sun May 09 20:48:36 2021 +0200 |
committer | Kumar Gala <kumar.gala@gmail.com> | Mon May 10 05:30:03 2021 -0500 |
tree | 7960d00ffff2067837585a6d2a66a23f220a2950 | |
parent | c30339aa16194de0df0e722bef14f5e3d380391e [diff] |
net: tcp: select MBEDTLS_MAC_MD5_ENABLED for ISN algorithm The ISN algorithm from RFC 6528 doesn't need Mbed TLS, but rather the MD5 algorithm from Mbed TLS. Therefore select MBEDTLS_MD and MBEDTLS_MAC_MD5_ENABLED in addition to MBEDTLS. This fixes the following build failure when using TLS version 1.2 is selected: zephyr/subsys/net/ip/tcp2.c:1329: undefined reference to `mbedtls_md5_ret' Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>