X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/37508af4ab231b1fde58345f5237f3ee82803829..25d39ef60aed5cbfcc11f2dd064a3964a8c6ca3b:/ssh.h diff --git a/ssh.h b/ssh.h index 5c72eeb1..68e5a128 100644 --- a/ssh.h +++ b/ssh.h @@ -1,5 +1,10 @@ #include +#define SSH_CIPHER_IDEA 1 +#define SSH_CIPHER_DES 2 +#define SSH_CIPHER_3DES 3 +#define SSH_CIPHER_BLOWFISH 6 + struct RSAKey { int bits; int bytes; @@ -39,3 +44,5 @@ void SHATransform(word32 *digest, word32 *data); int random_byte(void); void random_add_noise(void *noise, int length); + +void logevent (char *);