Re: [PATCH v11 6/8] crypto: Add RSASSA-PSS support

From: David Howells
Date: Thu Jan 08 2026 - 09:42:58 EST


Jarkko Sakkinen <jarkko@xxxxxxxxxx> wrote:

> > +struct rsassa_pss_ctx {
> > + struct crypto_akcipher *rsa;
> > + unsigned int key_size;
> > + unsigned int salt_len;
> > + char *pss_hash;
> > + char *mgf1_hash;
> > +};
>
> Just a nit but I would not align these fields as it does not serve any
> purpose here.

It makes them easier to read.

David