diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-03-14 14:20:15 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-03-14 14:20:15 -0400 |
commit | 9014dc111a46ae7e9443eb4f41969cfc20e79acc (patch) | |
tree | 74d1475880b345255e58b66bf2fc1a6050bb0c7a /src/ext/include.am | |
parent | f38f9b33d0bf52583491cdea6f41eb51819c627b (diff) | |
download | tor-9014dc111a46ae7e9443eb4f41969cfc20e79acc.tar.gz tor-9014dc111a46ae7e9443eb4f41969cfc20e79acc.zip |
Improve keccak-tiny performance by 15% on LE intel
The 64-bit load and store code was generating pretty bad output with
my compiler, so I extracted the code from csiphash and used that instead.
Close ticket 21737
Diffstat (limited to 'src/ext/include.am')
-rw-r--r-- | src/ext/include.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ext/include.am b/src/ext/include.am index f00f3e031e..c18e58857e 100644 --- a/src/ext/include.am +++ b/src/ext/include.am @@ -5,6 +5,7 @@ EXTRA_DIST += src/ext/README EXTHEADERS = \ src/ext/ht.h \ + src/ext/byteorder.h \ src/ext/tinytest.h \ src/ext/tor_readpassphrase.h \ src/ext/strlcat.c \ |