examples/l2fwd-crypto: fix digest with AEAD algo
authorPablo de Lara <pablo.de.lara.guarch@intel.com>
Mon, 16 Jul 2018 08:26:16 +0000 (09:26 +0100)
committerPablo de Lara <pablo.de.lara.guarch@intel.com>
Mon, 23 Jul 2018 23:48:10 +0000 (01:48 +0200)
commit6df38301de93165d2b12e793f2cf0e084414d917
tree8227636a7978bbdf92829ec41d54fea6b39fa349
parent37667e0a5760d99752e75fb9e8d4808b7e8d2c94
examples/l2fwd-crypto: fix digest with AEAD algo

When performing authentication verification (both for AEAD algorithms,
such as AES-GCM, or for authentication algorithms, such as SHA1-HMAC),
the digest address is calculated based on the packet size and the
algorithm used (substracting digest size and IP header to the packet size).

However, for AEAD algorithms, this was not calculated correctly,
since the digest size was not being substracted.

Bugzilla ID: 44
Fixes: 2661f4fbe93d ("examples/l2fwd-crypto: add AEAD parameters")
Cc: stable@dpdk.org
Reported-by: Ankur Dwivedi <ankur.dwivedi@cavium.com>
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
Tested-by: Ankur Dwivedi <ankur.dwivedi@cavium.com>
examples/l2fwd-crypto/main.c