X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=ssharcf.c;h=d16ce22540b85a8f937c7f03cb3b06bddee8e612;hb=2eb952ca31aa13d1f6f429305fbb6f43a9a28c56;hp=06f235c5be069ab7d70aaedc1be7f4d910088ed4;hpb=aa5bae89163f96453ee84541c1e96c650b3bc8f8;p=PuTTY.git diff --git a/ssharcf.c b/ssharcf.c index 06f235c5..d16ce225 100644 --- a/ssharcf.c +++ b/ssharcf.c @@ -100,16 +100,18 @@ 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, + arcfour_block, arcfour_block, NULL, NULL, "arcfour128", - 1, 128, 0, "Arcfour-128" + 1, 128, 16, 0, "Arcfour-128", + NULL }; const struct ssh2_cipher ssh_arcfour256_ssh2 = { arcfour_make_context, arcfour_free_context, arcfour_iv, arcfour256_key, - arcfour_block, arcfour_block, + arcfour_block, arcfour_block, NULL, NULL, "arcfour256", - 1, 256, 0, "Arcfour-256" + 1, 256, 32, 0, "Arcfour-256", + NULL }; static const struct ssh2_cipher *const arcfour_list[] = {