Now that we've got at least some SDCTR modes working (and aes256-ctr is our
[u/mdw/putty] / ssharcf.c
index 5946488..6d4709b 100644 (file)
--- a/ssharcf.c
+++ b/ssharcf.c
@@ -102,22 +102,18 @@ const struct ssh2_cipher ssh_arcfour128_ssh2 = {
     arcfour_make_context, arcfour_free_context, arcfour_iv, arcfour128_key,
     arcfour_block, arcfour_block,
     "arcfour128-draft-00@putty.projects.tartarus.org",
-    1, 128, "Arcfour-128"
+    1, 128, 0, "Arcfour-128"
 };
 
 const struct ssh2_cipher ssh_arcfour256_ssh2 = {
     arcfour_make_context, arcfour_free_context, arcfour_iv, arcfour256_key,
     arcfour_block, arcfour_block,
     "arcfour256-draft-00@putty.projects.tartarus.org",
-    1, 256, "Arcfour-256"
+    1, 256, 0, "Arcfour-256"
 };
 
-/*
- * arcfour256-draft-00@putty.projects.tartarus.org is as-yet untested
- * against any other implementation, and hence is commented out.
- */
 static const struct ssh2_cipher *const arcfour_list[] = {
-/*  &ssh_arcfour256_ssh2, */
+    &ssh_arcfour256_ssh2,
     &ssh_arcfour128_ssh2,
 };