diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-02-04 11:32:55 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-02-04 11:32:55 -0500 |
commit | 5ea9a90d682279e857efd63e2a829bd5a39b0178 (patch) | |
tree | 8b0bcad6ef5587bf67f0dda897c5bdcaf45c905f /changes | |
parent | ddf2c36ab1e606ea9dcd0253512da16ab17b3457 (diff) | |
download | tor-5ea9a90d682279e857efd63e2a829bd5a39b0178.tar.gz tor-5ea9a90d682279e857efd63e2a829bd5a39b0178.zip |
Fix compilation with --disable-curve25519 option
The fix is to move the two functions to format/parse base64
curve25519 public keys into a new "crypto_format.c" file. I could
have put them in crypto.c, but that's a big file worth splitting
anyway.
Fixes bug 8153; bugfix on 0.2.4.8-alpha where I did the fix for 7869.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug8153 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug8153 b/changes/bug8153 new file mode 100644 index 0000000000..9178f25bac --- /dev/null +++ b/changes/bug8153 @@ -0,0 +1,3 @@ + o Minor bugfixes: + - Compile correctly with the --disable-curve25519 option. Fix for + bug 8153; bugfix on 0.2.4.8-alpha. |