1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Comment/string tweaks to reflect new DES-in-SSH2 capability.

[originally from svn r1397]
This commit is contained in:
Jacob Nevins 2001-11-21 23:40:46 +00:00
parent b49fde9410
commit b723e94b78
2 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ enum {
CIPHER_3DES, CIPHER_3DES,
CIPHER_BLOWFISH, CIPHER_BLOWFISH,
CIPHER_AES, /* (SSH 2 only) */ CIPHER_AES, /* (SSH 2 only) */
CIPHER_DES, /* (SSH 1 only) */ CIPHER_DES,
CIPHER_MAX /* no. ciphers (inc warn) */ CIPHER_MAX /* no. ciphers (inc warn) */
}; };

View File

@ -741,7 +741,7 @@ static void init_dlg_ctrls(HWND hwnd, int keepsess)
static const struct { char *s; int c; } ciphers[] = { static const struct { char *s; int c; } ciphers[] = {
{ "3DES", CIPHER_3DES }, { "3DES", CIPHER_3DES },
{ "Blowfish", CIPHER_BLOWFISH }, { "Blowfish", CIPHER_BLOWFISH },
{ "DES (SSH 1 only)", CIPHER_DES }, { "DES", CIPHER_DES },
{ "AES (SSH 2 only)", CIPHER_AES }, { "AES (SSH 2 only)", CIPHER_AES },
{ "-- warn below here --", CIPHER_WARN } { "-- warn below here --", CIPHER_WARN }
}; };