On Fri, 29 May 2026 14:43:26 +0530 Gowrishankar Muthukrishnan <[email protected]> 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?

