Re: [PATCH v2 05/21] pgp: factor out rsa_pad

2025-05-22 Thread Daniel Kiper
On Thu, Mar 27, 2025 at 01:02:26AM +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 file

[PATCH v2 05/21] pgp: factor out rsa_pad

2025-03-26 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