Re: [PATCH v2 06/21] crypto: move storage for grub_crypto_pk_* to crypto.c

2025-05-22 Thread Daniel Kiper
On Thu, Mar 27, 2025 at 01:02:27AM +0530, Sudhakar Kuppusamy wrote: > From: Daniel Axtens > > The way gcry_rsa and friends (the asymmetric ciphers) are loaded for the > pgp module is a bit quirky. > > include/grub/crypto.h contains: > extern struct gcry_pk_spec *grub_crypto_pk_rsa; > > commands/

[PATCH v2 06/21] crypto: move storage for grub_crypto_pk_* to crypto.c

2025-03-26 Thread Sudhakar Kuppusamy
From: Daniel Axtens The way gcry_rsa and friends (the asymmetric ciphers) are loaded for the pgp module is a bit quirky. include/grub/crypto.h contains: extern struct gcry_pk_spec *grub_crypto_pk_rsa; commands/pgp.c contains the actual storage: struct gcry_pk_spec *grub_crypto_pk_rsa; And