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

Diff for /src/usr.bin/ssh/hmac.c between version 1.10 and 1.11

version 1.10, 2014/01/31 16:39:19 version 1.11, 2015/01/15 21:37:14
Line 18 
Line 18 
 #include <sys/types.h>  #include <sys/types.h>
 #include <string.h>  #include <string.h>
   
 #include "buffer.h"  #include "sshbuf.h"
 #include "digest.h"  #include "digest.h"
 #include "hmac.h"  #include "hmac.h"
   
Line 94 
Line 94 
 }  }
   
 int  int
 ssh_hmac_update_buffer(struct ssh_hmac_ctx *ctx, const Buffer *b)  ssh_hmac_update_buffer(struct ssh_hmac_ctx *ctx, const struct sshbuf *b)
 {  {
         return ssh_digest_update_buffer(ctx->digest, b);          return ssh_digest_update_buffer(ctx->digest, b);
 }  }

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11