Mercurial > dropbear
comparison session.h @ 712:bf0ac0512ef7
Fix "-m none" case and ugly typo
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 20 Mar 2013 23:13:45 +0800 |
parents | 983a817f8e41 |
children | cd3d3c63d189 |
comparison
equal
deleted
inserted
replaced
711:f4232b65b316 | 712:bf0ac0512ef7 |
---|---|
61 void cli_session_cleanup(); | 61 void cli_session_cleanup(); |
62 void cleantext(unsigned char* dirtytext); | 62 void cleantext(unsigned char* dirtytext); |
63 | 63 |
64 /* crypto parameters that are stored individually for transmit and receive */ | 64 /* crypto parameters that are stored individually for transmit and receive */ |
65 struct key_context_directional { | 65 struct key_context_directional { |
66 const struct dropbear_cipher *algo_crypt; /* NULL for none */ | 66 const struct dropbear_cipher *algo_crypt; |
67 const struct dropbear_cipher_mode *crypt_mode; | 67 const struct dropbear_cipher_mode *crypt_mode; |
68 const struct dropbear_hash *algo_mac; /* NULL for none */ | 68 const struct dropbear_hash *algo_mac; |
69 int hash_index; /* lookup for libtomcrypt */ | 69 int hash_index; /* lookup for libtomcrypt */ |
70 char algo_comp; /* compression */ | 70 char algo_comp; /* compression */ |
71 #ifndef DISABLE_ZLIB | 71 #ifndef DISABLE_ZLIB |
72 z_streamp zstream; | 72 z_streamp zstream; |
73 #endif | 73 #endif |