[BACK]Return to kex.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/kex.h between version 1.45 and 1.46

version 1.45, 2007/06/05 06:52:37 version 1.46, 2007/06/07 19:37:34
Line 86 
Line 86 
 struct Mac {  struct Mac {
         char    *name;          char    *name;
         int     enabled;          int     enabled;
         const EVP_MD    *md;  
         u_int   mac_len;          u_int   mac_len;
         u_char  *key;          u_char  *key;
         u_int   key_len;          u_int   key_len;
         HMAC_CTX        ctx;          int     type;
           const EVP_MD    *evp_md;
           HMAC_CTX        evp_ctx;
           struct umac_ctx *umac_ctx;
 };  };
 struct Comp {  struct Comp {
         int     type;          int     type;

Legend:
Removed from v.1.45  
changed lines
  Added in v.1.46