1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 03:22:48 -05:00

Rename the AES vtables.

The old names like ssh_aes128 and ssh_aes128_ctr reflect the SSH
protocol IDs, which is all very well, but I think a more important
principle is that it should be easy for me to remember which cipher
mode each one refers to. So I've renamed them so that they all end in
_cbc and _sdctr.

(I've left alone the string identifiers used by testcrypt, for the
moment. Perhaps I'll go back and change those later.)
This commit is contained in:
Simon Tatham
2019-01-13 13:46:16 +00:00
parent ee8025dd1c
commit be5c0e6356
4 changed files with 29 additions and 29 deletions

View File

@ -269,12 +269,12 @@ static const ssh2_cipheralg *get_ssh2_cipheralg(BinarySource *in)
{"3des", &ssh_3des_ssh2},
{"des", &ssh_des_ssh2},
{"des_sshcom", &ssh_des_sshcom_ssh2},
{"aes256_ctr", &ssh_aes256_ctr},
{"aes256", &ssh_aes256},
{"aes192_ctr", &ssh_aes192_ctr},
{"aes192", &ssh_aes192},
{"aes128_ctr", &ssh_aes128_ctr},
{"aes128", &ssh_aes128},
{"aes256_ctr", &ssh_aes256_sdctr},
{"aes256", &ssh_aes256_cbc},
{"aes192_ctr", &ssh_aes192_sdctr},
{"aes192", &ssh_aes192_cbc},
{"aes128_ctr", &ssh_aes128_sdctr},
{"aes128", &ssh_aes128_cbc},
{"blowfish", &ssh_blowfish_ssh2_ctr},
{"blowfish", &ssh_blowfish_ssh2},
{"arcfour256", &ssh_arcfour256_ssh2},