]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (dtucker) [blocks.c fe25519.c ge25519.c hash.c sc25519.c verify.c] Include
authorDarren Tucker <dtucker@zip.com.au>
Fri, 17 Jan 2014 01:43:43 +0000 (12:43 +1100)
committerDarren Tucker <dtucker@zip.com.au>
Fri, 17 Jan 2014 01:43:43 +0000 (12:43 +1100)
   includes.h to pull in all of the compatibility stuff.

ChangeLog
blocks.c
fe25519.c
ge25519.c
hash.c
sc25519.c
verify.c

index 4542fbb8595213e9a6221e9672628dc0b83b7d3c..51eff2d6f2ba480265bde77915402697fce764ae 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,8 @@
     specification to prevent warnings.
  - (dtucker) [crypto_api.h] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
  - (dtucker) [poly1305.c] Wrap stdlib.h include inside #ifdef HAVE_STDINT_H.
+ - (dtucker) [blocks.c fe25519.c ge25519.c hash.c sc25519.c verify.c] Include
+   includes.h to pull in all of the compatibility stuff.
 
 20140118
  - (djm) OpenBSD CVS Sync
index ba569b00a888d1b867e7006b598ac3d550d04df9..ad93fe509980d7ec4338add3b32b5c0acd33b3c9 100644 (file)
--- a/blocks.c
+++ b/blocks.c
@@ -5,6 +5,8 @@
  * Copied from nacl-20110221/crypto_hashblocks/sha512/ref/blocks.c
  */
 
+#include "includes.h"
+
 #include "crypto_api.h"
 
 typedef unsigned long long uint64;
index 2f368ebe6c86e03a2e61814ca1a47e03f504cb62..e54fd154738b73605bd926c8f5b696cbf15689b2 100644 (file)
--- a/fe25519.c
+++ b/fe25519.c
@@ -6,6 +6,8 @@
  * Copied from supercop-20130419/crypto_sign/ed25519/ref/fe25519.c
  */
 
+#include "includes.h"
+
 #define WINDOWSIZE 1 /* Should be 1,2, or 4 */
 #define WINDOWMASK ((1<<WINDOWSIZE)-1)
 
index 2ce29d0e7f43c6fde01b7a4e3562d554aaffc458..dfe3849b931b49df6e4cde6ad8877e5cc3ecc960 100644 (file)
--- a/ge25519.c
+++ b/ge25519.c
@@ -6,6 +6,8 @@
  * Copied from supercop-20130419/crypto_sign/ed25519/ref/ge25519.c
  */
 
+#include "includes.h"
+
 #include "fe25519.h"
 #include "sc25519.h"
 #include "ge25519.h"
diff --git a/hash.c b/hash.c
index 284bff9d397229a69334fca3a40f33dfb8f86128..734c6bee2af3083717203df53366c693cc3ed3b0 100644 (file)
--- a/hash.c
+++ b/hash.c
@@ -8,6 +8,8 @@ D. J. Bernstein
 Public domain.
 */
 
+#include "includes.h"
+
 #include "crypto_api.h"
 
 #define blocks crypto_hashblocks_sha512
index 54c0b509c1519d997d46312b5bf888bdb91a9b5f..1568d9a58c9808303a9d78614fcbd8be34540dce 100644 (file)
--- a/sc25519.c
+++ b/sc25519.c
@@ -6,6 +6,8 @@
  * Copied from supercop-20130419/crypto_sign/ed25519/ref/sc25519.c
  */
 
+#include "includes.h"
+
 #include "sc25519.h"
 
 /*Arithmetic modulo the group order m = 2^252 +  27742317777372353535851937790883648493 = 7237005577332262213973186563042994240857116359379907606001950938285454250989 */
index 0a328090c5c8803da7be8a7937d2a0daa0bdc0a6..1671a4132c9e252fbc64a20ecded833067d515c9 100644 (file)
--- a/verify.c
+++ b/verify.c
@@ -5,6 +5,8 @@
  * Copied from nacl-20110221/crypto_verify/32/ref/verify.c
  */
 
+#include "includes.h"
+
 #include "crypto_api.h"
 
 int crypto_verify_32(const unsigned char *x,const unsigned char *y)