summaryrefslogtreecommitdiff
path: root/xmss_fast.c
diff options
context:
space:
mode:
authormarkus@openbsd.org <markus@openbsd.org>2018-03-22 07:06:11 +0000
committerDamien Miller <djm@mindrot.org>2018-03-23 11:05:39 +1100
commitcb1f94431ef319cd48618b8b771b58739a8210cf (patch)
treefdb3b9c1752ecae5e8a6e282bba2ca6a1564f0bf /xmss_fast.c
parent27979da9e4074322611355598f69175b9ff10d39 (diff)
upstream: ssh/xmss: fix build; ok djm@
OpenBSD-Commit-ID: c9374ca41d4497f1c673ab681cc33f6e7c5dd186
Diffstat (limited to 'xmss_fast.c')
-rw-r--r--xmss_fast.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmss_fast.c b/xmss_fast.c
index e61d657c3..e37447f60 100644
--- a/xmss_fast.c
+++ b/xmss_fast.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: xmss_fast.c,v 1.2 2018/02/26 03:56:44 dtucker Exp $ */ 1/* $OpenBSD: xmss_fast.c,v 1.3 2018/03/22 07:06:11 markus Exp $ */
2/* 2/*
3xmss_fast.c version 20160722 3xmss_fast.c version 20160722
4Andreas Hülsing 4Andreas Hülsing
@@ -9,13 +9,13 @@ Public domain.
9#include "includes.h" 9#include "includes.h"
10#ifdef WITH_XMSS 10#ifdef WITH_XMSS
11 11
12#include "xmss_fast.h"
13#include <stdlib.h> 12#include <stdlib.h>
14#include <string.h> 13#include <string.h>
15#ifdef HAVE_STDINT_H 14#ifdef HAVE_STDINT_H
16#include <stdint.h> 15#include <stdint.h>
17#endif 16#endif
18 17
18#include "xmss_fast.h"
19#include "crypto_api.h" 19#include "crypto_api.h"
20#include "xmss_wots.h" 20#include "xmss_wots.h"
21#include "xmss_hash.h" 21#include "xmss_hash.h"