1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-05 21:42:47 -05:00

Implement zlib@openssh.com, using the rekey-after-userauth method suggested in

the wishlist entry.

[originally from svn r9120]
[this svn revision also touched putty-website,putty-wishlist]
This commit is contained in:
Jacob Nevins
2011-03-04 22:34:47 +00:00
parent d0b99ccee3
commit 74c5f7dda9
3 changed files with 104 additions and 25 deletions

3
ssh.h
View File

@ -251,6 +251,9 @@ struct ssh_signkey {
struct ssh_compress {
char *name;
/* For zlib@openssh.com: if non-NULL, this name will be considered once
* userauth has completed successfully. */
char *delayed_name;
void *(*compress_init) (void);
void (*compress_cleanup) (void *);
int (*compress) (void *, unsigned char *block, int len,