diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-08-27 17:59:15 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-09-25 15:08:31 -0400 |
commit | 25b1a32ef85c0b1d57a326991df002c86097a142 (patch) | |
tree | e0a339c7ede6592eb3757cc26d7f7cf2e999cba0 /src/ext/include.am | |
parent | 4caa6fad4c71391ab41e92a32aa58b10b6febe7f (diff) | |
download | tor-25b1a32ef85c0b1d57a326991df002c86097a142.tar.gz tor-25b1a32ef85c0b1d57a326991df002c86097a142.zip |
Draft implementation for ed25519 key blinding, as in prop224
This implementation allows somebody to add a blinding factor to a
secret key, and a corresponding blinding factor to the public key.
Robert Ransom came up with this idea, I believe. Nick Hopper proved a
scheme like this secure. The bugs are my own.
Diffstat (limited to 'src/ext/include.am')
-rw-r--r-- | src/ext/include.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ext/include.am b/src/ext/include.am index 45d7dc565a..69c136b184 100644 --- a/src/ext/include.am +++ b/src/ext/include.am @@ -57,7 +57,8 @@ src_ext_ed25519_ref10_libed25519_ref10_a_SOURCES= \ src/ext/ed25519/ref10/sc_muladd.c \ src/ext/ed25519/ref10/sc_reduce.c \ src/ext/ed25519/ref10/sign.c \ - src/ext/ed25519/ref10/keyconv.c + src/ext/ed25519/ref10/keyconv.c \ + src/ext/ed25519/ref10/blinding.c ED25519_REF10_HDRS = \ src/ext/ed25519/ref10/api.h \ |