Re: ECDSA related PRs

2024-03-06 Thread Bob Wolff
igest, but I am not seeing how to take my public key data and get it involved. Any examples of usage, possibly? Doing several google searches did not bear fruit for me. Thanks, bob On Wed, Feb 28, 2024 at 10:57 PM Dan Carpenter wrote: > On Thu, Feb 22, 2024 at 03:07:01PM -0800, Bob Wolff wro

Re: [PATCH] Check curve_name for null to avoid crash

2024-03-06 Thread Bob Wolff
Hey all, I think I addressed the nit of the missing blank line in my last email on this thread. Wondering if there's more action to be had on my part or if this just gets accepted etc. Thanks! Bob Wolff On Tue, Feb 27, 2024 at 3:57 PM Bob Wolff wrote: > If mixed rsa and ecdsa

Re: ECDSA related PRs

2024-02-28 Thread Bob Wolff
I would tend to think we'd want to /not/ change the source files directly for such purposes so that updates could be brought in with greater ease. On Thu, Feb 22, 2024 at 3:07 PM Bob Wolff wrote: > Peter, > Thanks for helping lead me down the right path here. > > WRT tinycryp

[PATCH] Check curve_name for null to avoid crash

2024-02-27 Thread Bob Wolff
If mixed rsa and ecdsa keys are specified in dtsi, an rsa key can be sent into the ecdsa verify. Without the ecdsa,curve property, this function will crash due to lack of checking the null pointer return. Signed-off-by: Bob Wolff --- lib/ecdsa/ecdsa-verify.c | 5 + 1 file changed, 5

Re: ECDSA related PRs

2024-02-22 Thread Bob Wolff
ning(s), 481 checks(s)* What's your advice on this? I would tend to think we'd want to /not/ change the source files directly for such purposes so that updates could be brought in with greater ease. Let me know your thoughts. Thanks, Bob Wolff On Wed, Feb 21, 2024 at 6:03 AM Peter Rob

[PATCH] Check curve_name for null to avoid crash

2024-02-22 Thread Bob Wolff
If mixed rsa and ecdsa keys are specified in dtsi, an rsa key can be sent into the ecdsa verify. Without the ecdsa,curve property, this function will crash due to lack of checking the null pointer return. Signed-off-by: Bob Wolff --- lib/ecdsa/ecdsa-verify.c | 5 + 1 file changed, 5

[PATCH] ecdsa: Avoid null pointer crash in ecdsa-verify due to absent property

2024-02-21 Thread Bob Wolff
If mixed rsa and ecdsa keys are specified in dtsi, an rsa key can be sent into the ecdsa verify. Without the ecdsa,curve property, this function will crash due to lack of checking the null pointer return. Signed-off-by: Bob Wolff --- lib/ecdsa/ecdsa-verify.c | 5 + 1 file changed, 5

ECDSA related PRs

2024-02-21 Thread Bob Wolff
ds an ecdsa verify driver (UCLASS_ECDSA) which utilizes tinycrypt to do the crypto work. Please advise on how best to proceed. Happy to work within the confines of what works best for the larger group. Thanks, Bob Wolff