[v1] crypto/cnxk: add ML crypto support
Stephen Hemminger
stephen at networkplumber.org
Fri May 29 17:25:30 CEST 2026
On Fri, 29 May 2026 14:43:26 +0530
Gowrishankar Muthukrishnan <gmuthukrishn at marvell.com> wrote:
> +/* ML table address and length */
> +struct re_ml_entry {
> + const uint8_t *data;
> + int len;
> +};
Better to use unsigned for size like size_t
> +
> +struct re_ml_tbl {
> + PLT_ATOMIC(uint64_t) refcount;
> + uint8_t ml_tbl[];
> +};
> +
> +const uint8_t re_mlkem_zeta_tbl[RE_MLKEM_ZETA_LEN] = {
Tables should be local to file so static?
More information about the dev
mailing list