From e7341d8e974d85dd86023f8b35377965bf54ab04 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sat, 9 Feb 2019 11:09:28 +0000 Subject: [PATCH] testcrypt: fix typo in a key algorithm name. I haven't actually written any tests for the NIST ECDSA algorithms yet, or else I'd have noticed that one of them wasn't spelled right. --- testcrypt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcrypt.c b/testcrypt.c index 28f61f8c..05615c93 100644 --- a/testcrypt.c +++ b/testcrypt.c @@ -236,7 +236,7 @@ static const ssh_keyalg *get_keyalg(BinarySource *in) {"ed25519", &ssh_ecdsa_ed25519}, {"p256", &ssh_ecdsa_nistp256}, {"p384", &ssh_ecdsa_nistp384}, - {"521", &ssh_ecdsa_nistp521}, + {"p521", &ssh_ecdsa_nistp521}, }; ptrlen name = get_word(in);