diff options
author | Todd Malsbary <todd.malsbary@linux.intel.com> | 2020-05-22 04:10:49 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-05-22 23:21:24 +0200 |
commit | bd6972226f50910a5b97e6b9d443c5d0433bf054 (patch) | |
tree | 85bd706c6bdb3bc09e76fd86271b955dd0b08743 /net/mptcp/protocol.h | |
parent | net: sgi: ioc3-eth: Fix return value check in ioc3eth_probe() (diff) | |
download | linux-bd6972226f50910a5b97e6b9d443c5d0433bf054.tar.xz linux-bd6972226f50910a5b97e6b9d443c5d0433bf054.zip |
mptcp: use untruncated hash in ADD_ADDR HMAC
There is some ambiguity in the RFC as to whether the ADD_ADDR HMAC is
the rightmost 64 bits of the entire hash or of the leftmost 160 bits
of the hash. The intention, as clarified with the author of the RFC,
is the entire hash.
This change returns the entire hash from
mptcp_crypto_hmac_sha (instead of only the first 160 bits), and moves
any truncation/selection operation on the hash to the caller.
Fixes: 12555a2d97e5 ("mptcp: use rightmost 64 bits in ADD_ADDR HMAC")
Reviewed-by: Christoph Paasch <cpaasch@apple.com>
Reviewed-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: Todd Malsbary <todd.malsbary@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/mptcp/protocol.h')
-rw-r--r-- | net/mptcp/protocol.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/mptcp/protocol.h b/net/mptcp/protocol.h index e4ca6320ce76..d0803dfb8108 100644 --- a/net/mptcp/protocol.h +++ b/net/mptcp/protocol.h @@ -81,7 +81,6 @@ /* MPTCP ADD_ADDR flags */ #define MPTCP_ADDR_ECHO BIT(0) -#define MPTCP_ADDR_HMAC_LEN 20 #define MPTCP_ADDR_IPVERSION_4 4 #define MPTCP_ADDR_IPVERSION_6 6 |