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

Diff for /src/usr.bin/ssh/umac.h between version 1.1 and 1.2

version 1.1, 2007/06/07 19:37:34 version 1.2, 2012/10/04 13:21:50
Line 116 
Line 116 
   
 #endif  #endif
   
   /* matching umac-128 API, we reuse umac_ctx, since it's opaque */
   struct umac_ctx *umac128_new(u_char key[]);
   int umac128_update(struct umac_ctx *ctx, u_char *input, long len);
   int umac128_final(struct umac_ctx *ctx, u_char tag[], u_char nonce[8]);
   int umac128_delete(struct umac_ctx *ctx);
   
 #ifdef __cplusplus  #ifdef __cplusplus
     }      }
 #endif  #endif

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2