1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-10 07:43:48 -05:00

SSH 2 support, phase 1, debugging. Currently does Diffie-Hellman and gets

the same results as the server, which is a pretty good start.

[originally from svn r569]
This commit is contained in:
Simon Tatham
2000-09-05 14:28:17 +00:00
parent 5ca4d2d1c5
commit 35205e5cb7
10 changed files with 1324 additions and 304 deletions

View File

@ -414,5 +414,7 @@ static void blowfish_decrypt_blk(unsigned char *blk, int len)
struct ssh_cipher ssh_blowfish = {
blowfish_sesskey,
blowfish_encrypt_blk,
blowfish_decrypt_blk
blowfish_decrypt_blk,
"blowfish-cbc",
8
};