summaryrefslogtreecommitdiff
path: root/hmac.c
diff options
context:
space:
mode:
authormarkus@openbsd.org <markus@openbsd.org>2015-01-15 21:37:14 +0000
committerDamien Miller <djm@mindrot.org>2015-01-16 18:21:33 +1100
commite17ac01f8b763e4b83976b9e521e90a280acc097 (patch)
tree45c850becdfd3fcb1c160ebfde7eaf8ee6f1f94b /hmac.c
parentddef9995a1fa6c7a8ff3b38bfe6cf724bebf13d0 (diff)
downloadopenssh-git-e17ac01f8b763e4b83976b9e521e90a280acc097.tar.gz
upstream commit
switch to sshbuf
Diffstat (limited to 'hmac.c')
-rw-r--r--hmac.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hmac.c b/hmac.c
index 99317b0f..d1c12417 100644
--- a/hmac.c
+++ b/hmac.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hmac.c,v 1.10 2014/01/31 16:39:19 tedu Exp $ */
+/* $OpenBSD: hmac.c,v 1.11 2015/01/15 21:37:14 markus Exp $ */
/*
* Copyright (c) 2014 Markus Friedl. All rights reserved.
*
@@ -20,7 +20,7 @@
#include <sys/types.h>
#include <string.h>
-#include "buffer.h"
+#include "sshbuf.h"
#include "digest.h"
#include "hmac.h"
@@ -96,7 +96,7 @@ ssh_hmac_update(struct ssh_hmac_ctx *ctx, const void *m, size_t mlen)
}
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);
}