Re: [PATCH v4 04/23] pgp: Factor out rsa_pad

2025-07-31 Thread Gary Lin via Grub-devel
On Thu, Jul 31, 2025 at 05:31:49PM +0530, Sudhakar Kuppusamy wrote: > > > > On 24 Jul 2025, at 2:25 PM, Gary Lin wrote: > > > > On Wed, Jul 09, 2025 at 05:15:21PM +0530, Sudhakar Kuppusamy wrote: > >> From: Daniel Axtens > >> > >> rsa_pad does the PKCS#1 v1.5 padding for the RSA signature sch

Re: [PATCH v4 04/23] pgp: Factor out rsa_pad

2025-07-31 Thread Sudhakar Kuppusamy
> On 24 Jul 2025, at 2:25 PM, Gary Lin wrote: > > On Wed, Jul 09, 2025 at 05:15:21PM +0530, Sudhakar Kuppusamy wrote: >> From: Daniel Axtens >> >> rsa_pad does the PKCS#1 v1.5 padding for the RSA signature scheme. >> We want to use it in other RSA signature verification applications. >> >> I

Re: [PATCH v4 04/23] pgp: Factor out rsa_pad

2025-07-24 Thread Gary Lin via Grub-devel
On Wed, Jul 09, 2025 at 05:15:21PM +0530, Sudhakar Kuppusamy wrote: > From: Daniel Axtens > > rsa_pad does the PKCS#1 v1.5 padding for the RSA signature scheme. > We want to use it in other RSA signature verification applications. > > I considered and rejected putting it in lib/crypto.c. That fi

[PATCH v4 04/23] pgp: Factor out rsa_pad

2025-07-09 Thread Sudhakar Kuppusamy
From: Daniel Axtens rsa_pad does the PKCS#1 v1.5 padding for the RSA signature scheme. We want to use it in other RSA signature verification applications. I considered and rejected putting it in lib/crypto.c. That file doesn't currently require any MPI functions, but rsa_pad does. That's not so