1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

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.
This commit is contained in:
Simon Tatham 2019-02-09 11:09:28 +00:00
parent 7b52943dde
commit e7341d8e97

View File

@ -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);