Now that my arcfour-fixes draft has been approved by the IESG, use the
authorben <ben@cda61777-01e9-0310-a592-d414129be87e>
Sat, 3 Sep 2005 17:03:49 +0000 (17:03 +0000)
committerben <ben@cda61777-01e9-0310-a592-d414129be87e>
Sat, 3 Sep 2005 17:03:49 +0000 (17:03 +0000)
IANA-assigned names for its modes.

git-svn-id: svn://svn.tartarus.org/sgt/putty@6263 cda61777-01e9-0310-a592-d414129be87e

ssharcf.c

index 6d4709b..2381d88 100644 (file)
--- a/ssharcf.c
+++ b/ssharcf.c
@@ -101,14 +101,14 @@ static void arcfour_iv(void *handle, unsigned char *key)
 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",
+    "arcfour128",
     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",
+    "arcfour256",
     1, 256, 0, "Arcfour-256"
 };