]> git.droids-corp.org - dpdk.git/commitdiff
examples/l2fwd-crypto: fix digest length
authorPablo de Lara <pablo.de.lara.guarch@intel.com>
Tue, 18 Jul 2017 07:58:16 +0000 (08:58 +0100)
committerPablo de Lara <pablo.de.lara.guarch@intel.com>
Wed, 19 Jul 2017 11:10:41 +0000 (14:10 +0300)
Digest length was not being set when using authentication
algorithms.

Fixes: 2661f4fbe93d ("examples/l2fwd-crypto: add AEAD parameters")
Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
examples/l2fwd-crypto/main.c

index 84b727bc0cb68078fe2c04f589e6806afeb6d3ea..664e0e0d2df118b02d80d9708689e16f5b501dca 100644 (file)
@@ -752,6 +752,8 @@ l2fwd_main_loop(struct l2fwd_crypto_options *options)
                                port_cparams[i].hash_verify = 0;
 
                        port_cparams[i].auth_algo = options->auth_xform.auth.algo;
+                       port_cparams[i].digest_length =
+                                       options->auth_xform.auth.digest_length;
                        /* Set IV parameters */
                        if (options->auth_iv.length) {
                                options->auth_xform.auth.iv.offset =