summaryrefslogtreecommitdiff
path: root/mac.c
diff options
context:
space:
mode:
Diffstat (limited to 'mac.c')
-rw-r--r--mac.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/mac.c b/mac.c
index a59e7edf1..edf9b69bd 100644
--- a/mac.c
+++ b/mac.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: mac.c,v 1.11 2006/07/22 20:48:23 stevesk Exp $ */ 1/* $OpenBSD: mac.c,v 1.12 2006/08/03 03:34:42 deraadt Exp $ */
2/* 2/*
3 * Copyright (c) 2001 Markus Friedl. All rights reserved. 3 * Copyright (c) 2001 Markus Friedl. All rights reserved.
4 * 4 *
@@ -25,13 +25,18 @@
25 25
26#include "includes.h" 26#include "includes.h"
27 27
28#include <sys/types.h>
29
28#include <openssl/hmac.h> 30#include <openssl/hmac.h>
29 31
30#include <string.h> 32#include <string.h>
33#include <signal.h>
31 34
32#include "xmalloc.h" 35#include "xmalloc.h"
33#include "log.h" 36#include "log.h"
34#include "cipher.h" 37#include "cipher.h"
38#include "buffer.h"
39#include "key.h"
35#include "kex.h" 40#include "kex.h"
36#include "mac.h" 41#include "mac.h"
37#include "misc.h" 42#include "misc.h"