From 52267616625ad82bad95b4d2fb12dd5917abdb80 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 14 Dec 2018 13:44:10 -0500 Subject: Whitespace check-in --- donna_sse.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'donna_sse.cpp') diff --git a/donna_sse.cpp b/donna_sse.cpp index 3ab13076..46dfd393 100644 --- a/donna_sse.cpp +++ b/donna_sse.cpp @@ -128,16 +128,16 @@ curve25519_expand(bignum25519 out, const byte in[32]) { x6 = *(word32 *)(in + 24); x7 = *(word32 *)(in + 28); - out[0] = ( x0 ) & reduce_mask_26; + out[0] = ( x0 ) & reduce_mask_26; out[1] = ((((word64)x1 << 32) | x0) >> 26) & reduce_mask_25; out[2] = ((((word64)x2 << 32) | x1) >> 19) & reduce_mask_26; out[3] = ((((word64)x3 << 32) | x2) >> 13) & reduce_mask_25; - out[4] = (( x3) >> 6) & reduce_mask_26; - out[5] = ( x4 ) & reduce_mask_25; + out[4] = (( x3) >> 6) & reduce_mask_26; + out[5] = ( x4 ) & reduce_mask_25; out[6] = ((((word64)x5 << 32) | x4) >> 25) & reduce_mask_26; out[7] = ((((word64)x6 << 32) | x5) >> 19) & reduce_mask_25; out[8] = ((((word64)x7 << 32) | x6) >> 12) & reduce_mask_26; - out[9] = (( x7) >> 6) & reduce_mask_25; /* ignore the top bit */ + out[9] = (( x7) >> 6) & reduce_mask_25; /* ignore the top bit */ out[10] = 0; out[11] = 0; -- cgit v1.2.1