summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2019-12-28 10:47:32 +0100
committerNiels Möller <nisse@lysator.liu.se>2019-12-28 10:58:45 +0100
commit43be59b25a5134363d2040fdc7b31ffbe5a8d308 (patch)
treeb5047666a9451b088972d5aca4f0475768052d46
parent0e1108ba872a11e1cc9d55aecc1f564d9c265c7a (diff)
downloadnettle-43be59b25a5134363d2040fdc7b31ffbe5a8d308.tar.gz
Tweak includes of nettle-meta.h.
* bignum.h: Drop unreleted include of nettle-meta.h. * pss.h: Include nettle-meta.h explicitly. * eddsa-internal.h: Likewise.
-rw-r--r--ChangeLog6
-rw-r--r--bignum.h2
-rw-r--r--eddsa-internal.h1
-rw-r--r--pss.h2
4 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index aa3bbfc0..04a5dc6a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2019-12-28 Niels Möller <nisse@lysator.liu.se>
+
+ * bignum.h: Drop unreleted include of nettle-meta.h.
+ * pss.h: Include nettle-meta.h explicitly.
+ * eddsa-internal.h: Likewise.
+
2019-12-25 Niels Möller <nisse@lysator.liu.se>
Support for SHAKE256, based on patch by Daiki Ueno.
diff --git a/bignum.h b/bignum.h
index cace4d4f..6daeeb5f 100644
--- a/bignum.h
+++ b/bignum.h
@@ -34,8 +34,6 @@
#ifndef NETTLE_BIGNUM_H_INCLUDED
#define NETTLE_BIGNUM_H_INCLUDED
-#include "nettle-meta.h"
-
#include "nettle-types.h"
/* For NETTLE_USE_MINI_GMP */
diff --git a/eddsa-internal.h b/eddsa-internal.h
index abf02f48..f0d357f6 100644
--- a/eddsa-internal.h
+++ b/eddsa-internal.h
@@ -33,6 +33,7 @@
#define NETTLE_EDDSA_INTERNAL_H
#include "nettle-types.h"
+#include "nettle-meta.h"
#define _eddsa_compress _nettle_eddsa_compress
#define _eddsa_compress_itch _nettle_eddsa_compress_itch
diff --git a/pss.h b/pss.h
index 7627cfe9..9757dfe3 100644
--- a/pss.h
+++ b/pss.h
@@ -34,7 +34,7 @@
#ifndef NETTLE_PSS_H_INCLUDED
#define NETTLE_PSS_H_INCLUDED
-#include "nettle-types.h"
+#include "nettle-meta.h"
#include "bignum.h"
#ifdef __cplusplus