Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Smith <brian@briansmith.org>2016-01-27 04:16:37 +0300
committerDavid Benjamin <davidben@google.com>2016-01-28 01:15:04 +0300
commit24e428899b96da6b569bc1a6f898f53acb008e75 (patch)
treea5b2bf828b3c55736bc089e0e4dae9e83ccebd08 /crypto/poly1305
parentf547007332eece528542835be35424d0a052a1a6 (diff)
Define `int128_t` and `uint128_t` in one place.
Change-Id: Ia93130aadf319eaba1b6f2ec2896a4c50d9e8ede Reviewed-on: https://boringssl-review.googlesource.com/6975 Reviewed-by: David Benjamin <davidben@google.com>
Diffstat (limited to 'crypto/poly1305')
-rw-r--r--crypto/poly1305/poly1305_vec.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/crypto/poly1305/poly1305_vec.c b/crypto/poly1305/poly1305_vec.c
index 4a826cc2..1f5237d1 100644
--- a/crypto/poly1305/poly1305_vec.c
+++ b/crypto/poly1305/poly1305_vec.c
@@ -34,7 +34,6 @@
#define U64TO8_LE(m, v) (*(uint64_t *)(m)) = v
typedef __m128i xmmi;
-typedef unsigned __int128 uint128_t;
static const alignas(16) uint32_t poly1305_x64_sse2_message_mask[4] = {
(1 << 26) - 1, 0, (1 << 26) - 1, 0};