diff options
author | Florin Coras <fcoras@cisco.com> | 2021-10-12 09:03:18 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-10-12 16:54:26 +0000 |
commit | 74a25859bd94910718a48cdb11841bc159b63c9c (patch) | |
tree | 6f2fdd354924834d50cd6223ab01b6203bbadfbc /src/plugins/unittest/crypto_test.c | |
parent | f6e6da9247f3a7ca5c298bc95a882b1684e957ba (diff) |
unittest: fix crypto key len coverity warning
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Id41e22345be3ec401813ba43ddc7d92666784eb4
Diffstat (limited to 'src/plugins/unittest/crypto_test.c')
-rw-r--r-- | src/plugins/unittest/crypto_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/unittest/crypto_test.c b/src/plugins/unittest/crypto_test.c index ed21e86b8d7..e0da2d76383 100644 --- a/src/plugins/unittest/crypto_test.c +++ b/src/plugins/unittest/crypto_test.c @@ -857,7 +857,7 @@ test_crypto_perf (vlib_main_t * vm, crypto_test_main_t * tm) vnet_crypto_op_t *ops1 = 0, *ops2 = 0, *op1, *op2; vnet_crypto_alg_data_t *ad = vec_elt_at_index (cm->algs, tm->alg); vnet_crypto_key_index_t key_index = ~0; - u8 key[32]; + u8 key[64]; int buffer_size = vlib_buffer_get_default_data_size (vm); u64 seed = clib_cpu_time_now (); u64 t0[5], t1[5], t2[5], n_bytes = 0; |