X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=sshblowf.c;h=353116a6604fdc8334d774f4004999e934f9d321;hb=1bfde9dc521a1b4f059e0a33e93a62a73716884f;hp=70709f64190c1574be813fe87dbd78fd023197fe;hpb=2968563180ae5013976123d8c5106a6c394b96a6;p=PuTTY.git diff --git a/sshblowf.c b/sshblowf.c index 70709f64..353116a6 100644 --- a/sshblowf.c +++ b/sshblowf.c @@ -641,16 +641,18 @@ 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 }; static const struct ssh2_cipher *const blowfish_list[] = {