aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcryptobox/siphash
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2016-01-07 11:27:41 +0000
committerVsevolod Stakhov <vsevolod@highsecure.ru>2016-01-07 11:27:41 +0000
commit45c5ffb0c0840d7c7cd6489e42708ec79df9ab2e (patch)
tree233ccf03dd25196e1831d6ac91396aaab8f967c5 /src/libcryptobox/siphash
parent1c1215868969dc988d522f8858ba9444da8a0997 (diff)
downloadrspamd-45c5ffb0c0840d7c7cd6489e42708ec79df9ab2e.tar.gz
rspamd-45c5ffb0c0840d7c7cd6489e42708ec79df9ab2e.zip
Fix tests
Diffstat (limited to 'src/libcryptobox/siphash')
-rw-r--r--src/libcryptobox/siphash/ref.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/libcryptobox/siphash/ref.c b/src/libcryptobox/siphash/ref.c
index 1a09f2066..cbd244f5f 100644
--- a/src/libcryptobox/siphash/ref.c
+++ b/src/libcryptobox/siphash/ref.c
@@ -31,14 +31,6 @@
#define ROTL(x,b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) )
-#define U32TO8_LE(p, v) \
- (p)[0] = (uint8_t)((v) ); (p)[1] = (uint8_t)((v) >> 8); \
- (p)[2] = (uint8_t)((v) >> 16); (p)[3] = (uint8_t)((v) >> 24);
-
-#define U64TO8_LE(p, v) \
- U32TO8_LE((p), (uint32_t)((v) )); \
- U32TO8_LE((p) + 4, (uint32_t)((v) >> 32));
-
#if BYTE_ORDER != LITTLE_ENDIAN
#define U8TO64_LE(p) \
(((uint64_t)((p)[0]) << 0) | \