Re: [PATCH v1 1/1] lib: ecdsa: Add support for loading ECDSA public key from FDT

2025-06-25 Thread Tom Rini
On Fri, 06 Jun 2025 15:34:21 +0800, Jamin Lin wrote: > This patch adds support for parsing ECDSA public keys from the device tree > blob (FDT) under the `/signature` node. The public key is expected to be > defined using: > > - ecdsa,curve (e.g., "prime256v1", "secp384r1") > - ecdsa,x-point >

[PATCH v1 1/1] lib: ecdsa: Add support for loading ECDSA public key from FDT

2025-06-06 Thread Jamin Lin
This patch adds support for parsing ECDSA public keys from the device tree blob (FDT) under the `/signature` node. The public key is expected to be defined using: - ecdsa,curve (e.g., "prime256v1", "secp384r1") - ecdsa,x-point - ecdsa,y-point The implementation introduces: - struct ecdsa_pu