examples/fips_validation: fix GMAC IV generation

Replace rand() call in fips validation example with rte_rand().

Coverity issue: 381668
Fixes: e27268bd2103 ("examples/fips_validation: add parsing for AES-GMAC")

Signed-off-by: Brian Dooley <brian.dooley@intel.com>
This commit is contained in:
Brian Dooley 2022-11-02 12:01:17 +00:00 committed by Akhil Goyal
parent 3625d12ed6
commit b7ceea22a8

View File

@ -12,6 +12,7 @@
#include <rte_mempool.h>
#include <rte_mbuf.h>
#include <rte_string_fns.h>
#include <rte_random.h>
#include "fips_validation.h"
#include "fips_dev_self_test.h"
@ -761,7 +762,7 @@ prepare_auth_op(void)
}
for (i = 0; i < vec.iv.len; i++) {
int random = rand();
int random = rte_rand();
vec.iv.val[i] = (uint8_t)random;
}
}