X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=sshblowf.c;h=353116a6604fdc8334d774f4004999e934f9d321;hb=00bcf6ecbc38b79579c09b25dcf848c159513f5a;hp=bf0b16419a9477a92adce249ab854812d2947219;hpb=705f1592552aa39bc1a5061ee48f1f5a0f0d1cbb;p=PuTTY.git diff --git a/sshblowf.c b/sshblowf.c index bf0b1641..353116a6 100644 --- a/sshblowf.c +++ b/sshblowf.c @@ -641,17 +641,17 @@ const struct ssh_cipher ssh_blowfish_ssh1 = { static const struct ssh2_cipher ssh_blowfish_ssh2 = { blowfish_make_context, blowfish_free_context, blowfish_iv, blowfish_key, - blowfish_ssh2_encrypt_blk, blowfish_ssh2_decrypt_blk, + blowfish_ssh2_encrypt_blk, blowfish_ssh2_decrypt_blk, NULL, NULL, "blowfish-cbc", - 8, 128, SSH_CIPHER_IS_CBC, "Blowfish-128 CBC", + 8, 128, 16, SSH_CIPHER_IS_CBC, "Blowfish-128 CBC", NULL }; static const struct ssh2_cipher ssh_blowfish_ssh2_ctr = { blowfish_make_context, blowfish_free_context, blowfish_iv, blowfish256_key, - blowfish_ssh2_sdctr, blowfish_ssh2_sdctr, + blowfish_ssh2_sdctr, blowfish_ssh2_sdctr, NULL, NULL, "blowfish-ctr", - 8, 256, 0, "Blowfish-256 SDCTR", + 8, 256, 32, 0, "Blowfish-256 SDCTR", NULL };