diff options
author | Yawning Angel <yawning@schwanenlied.me> | 2015-07-06 09:40:28 +0000 |
---|---|---|
committer | Yawning Angel <yawning@schwanenlied.me> | 2015-07-06 09:40:28 +0000 |
commit | 0f3eeca9b80ff42cf17f9d8b1b4b45588ea9fbad (patch) | |
tree | bf5f5787dbc922bb4ee4c3bd994988d5b1a3ca2a /src/common/include.am | |
parent | 7b10741be4280d84a7ac9f41c54380cbc1f09c1b (diff) | |
download | tor-0f3eeca9b80ff42cf17f9d8b1b4b45588ea9fbad.tar.gz tor-0f3eeca9b80ff42cf17f9d8b1b4b45588ea9fbad.zip |
Integrate ed25519-donna (Not yet used).
Integrate ed25519-donna into the build process, and provide an
interface that matches the `ref10` code. Apart from the blinding and
Curve25519 key conversion, this functions as a drop-in replacement for
ref10 (verified by modifying crypto_ed25519.c).
Tests pass, and the benchmarks claim it is quite a bit faster, however
actually using the code requires additional integration work.
Diffstat (limited to 'src/common/include.am')
-rw-r--r-- | src/common/include.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/include.am b/src/common/include.am index 789f4003c9..de93131615 100644 --- a/src/common/include.am +++ b/src/common/include.am @@ -43,6 +43,7 @@ endif endif LIBDONNA += $(LIBED25519_REF10) +LIBDONNA += $(LIBED25519_DONNA) if THREADS_PTHREADS threads_impl_source=src/common/compat_pthreads.c |