diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-12-07 12:45:46 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-03 11:29:48 -0500 |
commit | 463e9378df7eaa07a895da34dc10d3c336760f09 (patch) | |
tree | bd5557925c179d438f8c20fe48945b1444cea1af /src/ext/curve25519_donna | |
parent | 095c70b7af571a61970ff8d212828b000c26eea2 (diff) | |
download | tor-463e9378df7eaa07a895da34dc10d3c336760f09.tar.gz tor-463e9378df7eaa07a895da34dc10d3c336760f09.zip |
Update our copy of curve25519-donna-c64.
This now matches upstream at version 59a896970a1ad0a6cd7d0.
(Adam took my patches.)
Diffstat (limited to 'src/ext/curve25519_donna')
-rw-r--r-- | src/ext/curve25519_donna/curve25519-donna-c64.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/ext/curve25519_donna/curve25519-donna-c64.c b/src/ext/curve25519_donna/curve25519-donna-c64.c index 38b94e7f2d..9ebd8a12d8 100644 --- a/src/ext/curve25519_donna/curve25519-donna-c64.c +++ b/src/ext/curve25519_donna/curve25519-donna-c64.c @@ -188,8 +188,7 @@ fsquare_times(felem output, const felem in, limb count) { /* Load a little-endian 64-bit number */ static limb -load_limb(const u8 *in) -{ +load_limb(const u8 *in) { return ((limb)in[0]) | (((limb)in[1]) << 8) | @@ -202,8 +201,7 @@ load_limb(const u8 *in) } static void -store_limb(u8 *out, limb in) -{ +store_limb(u8 *out, limb in) { out[0] = in & 0xff; out[1] = (in >> 8) & 0xff; out[2] = (in >> 16) & 0xff; @@ -216,8 +214,7 @@ store_limb(u8 *out, limb in) /* Take a little-endian, 32-byte number and expand it into polynomial form */ static void -fexpand(limb *output, const u8 *in) -{ +fexpand(limb *output, const u8 *in) { output[0] = load_limb(in) & 0x7ffffffffffff; output[1] = (load_limb(in+6) >> 3) & 0x7ffffffffffff; output[2] = (load_limb(in+12) >> 6) & 0x7ffffffffffff; |