diff options
author | Damjan Marion <damarion@cisco.com> | 2019-05-23 20:46:33 +0200 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-05-27 10:08:03 +0000 |
commit | 423fbb1deaed9db9eb662d4b7407fb7274cb8e90 (patch) | |
tree | 4c7197777525cff96db4bcb31676d7ba8a4901e4 /src/plugins/unittest | |
parent | dee9bea4876352a856dbad373a763f2ab10ad4a3 (diff) |
unittest: fix test crypto perf for AEAD algos
Change-Id: I055014ff0bc7f6d32d59eaf3511ecb91e268d49b
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/plugins/unittest')
-rw-r--r-- | src/plugins/unittest/crypto_test.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/unittest/crypto_test.c b/src/plugins/unittest/crypto_test.c index 24910e7df6d..44c435964fd 100644 --- a/src/plugins/unittest/crypto_test.c +++ b/src/plugins/unittest/crypto_test.c @@ -359,12 +359,13 @@ test_crypto_perf (vlib_main_t * vm, crypto_test_main_t * tm) vnet_crypto_op_init (op2, ad->op_by_type [VNET_CRYPTO_OP_TYPE_AEAD_DECRYPT]); - op1->flags = VNET_CRYPTO_OP_FLAG_INIT_IV; op1->src = op2->src = op1->dst = op2->dst = b->data; op1->key_index = op2->key_index = key_index; + op1->tag = op2->tag = b->data - 32; op1->iv = op2->iv = b->data - 64; op1->aad = op2->aad = b->data - VLIB_BUFFER_PRE_DATA_SIZE; - op1->aad_len = op2->aad_len = 0; + op1->aad_len = op2->aad_len = 64; + op1->tag_len = op2->tag_len = 16; n_bytes += op1->len = op2->len = buffer_size; break; case VNET_CRYPTO_OP_TYPE_HMAC: |