mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-07 06:22:47 -05:00
Add a key length indication to each SSH2 cipher structure, in
preparation for needing to know how much key material each cipher needs in order to select a suitable Diffie-Hellman group. [originally from svn r961]
This commit is contained in:
@ -514,7 +514,7 @@ struct ssh_cipher ssh_blowfish_ssh1 = {
|
||||
blowfish_ssh1_encrypt_blk,
|
||||
blowfish_ssh1_decrypt_blk,
|
||||
"blowfish-cbc",
|
||||
8
|
||||
8, 256
|
||||
};
|
||||
|
||||
struct ssh_cipher ssh_blowfish_ssh2 = {
|
||||
@ -524,5 +524,5 @@ struct ssh_cipher ssh_blowfish_ssh2 = {
|
||||
blowfish_ssh2_encrypt_blk,
|
||||
blowfish_ssh2_decrypt_blk,
|
||||
"blowfish-cbc",
|
||||
8
|
||||
8, 128
|
||||
};
|
||||
|
Reference in New Issue
Block a user