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

Rationalised host key storage. Also started code reorg: persistent-state

routines have been moved out into a replaceable module winstore.c.

[originally from svn r639]
This commit is contained in:
Simon Tatham
2000-09-27 15:21:04 +00:00
parent 0fed43e9f4
commit aad0a52dfb
11 changed files with 585 additions and 232 deletions

2
ssh.h
View File

@ -123,8 +123,10 @@ struct ssh_kex {
struct ssh_hostkey {
void (*setkey)(char *data, int len);
char *(*fmtkey)(void);
char *(*fingerprint)(void);
int (*verifysig)(char *sig, int siglen, char *data, int datalen);
char *name;
char *keytype; /* for host key cache */
};
struct ssh_compress {