merged changes from RC_1_0

This commit is contained in:
Arvid Norberg 2014-07-19 07:12:20 +00:00
parent 30d561d0c5
commit f15182a737
11 changed files with 10 additions and 10 deletions

View File

@ -131,7 +131,6 @@ DOCS_PAGES = \
ED25519_SOURCE = \ ED25519_SOURCE = \
ed25519/readme.md \ ed25519/readme.md \
ed25519/test.cpp \ ed25519/test.cpp \
ed25519/src/ed25519.hpp \
ed25519/src/fe.h \ ed25519/src/fe.h \
ed25519/src/fixedint.h \ ed25519/src/fixedint.h \
ed25519/src/ge.h \ ed25519/src/ge.h \

View File

@ -1,4 +1,4 @@
#include "ed25519.hpp" #include "libtorrent/ed25519.hpp"
#include "ge.h" #include "ge.h"
#include "sc.h" #include "sc.h"

View File

@ -1,4 +1,4 @@
#include "ed25519.hpp" #include "libtorrent/ed25519.hpp"
#include "fe.h" #include "fe.h"
void ed25519_key_exchange(unsigned char *shared_secret void ed25519_key_exchange(unsigned char *shared_secret

View File

@ -1,4 +1,4 @@
#include "ed25519.hpp" #include "libtorrent/ed25519.hpp"
#include "sha512.h" #include "sha512.h"
#include "ge.h" #include "ge.h"

View File

@ -1,4 +1,4 @@
#include "ed25519.hpp" #include "libtorrent/ed25519.hpp"
#ifndef ED25519_NO_SEED #ifndef ED25519_NO_SEED

View File

@ -1,4 +1,4 @@
#include "ed25519.hpp" #include "libtorrent/ed25519.hpp"
#include "sha512.h" #include "sha512.h"
#include "ge.h" #include "ge.h"
#include "sc.h" #include "sc.h"

View File

@ -1,4 +1,4 @@
#include "ed25519.hpp" #include "libtorrent/ed25519.hpp"
#include "sha512.h" #include "sha512.h"
#include "ge.h" #include "ge.h"
#include "sc.h" #include "sc.h"

View File

@ -47,6 +47,7 @@ nobase_include_HEADERS = \
disk_io_thread.hpp \ disk_io_thread.hpp \
disk_observer.hpp \ disk_observer.hpp \
disk_job_pool.hpp \ disk_job_pool.hpp \
ed25519.hpp \
entry.hpp \ entry.hpp \
enum_net.hpp \ enum_net.hpp \
error.hpp \ error.hpp \

View File

@ -33,8 +33,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include <libtorrent/hasher.hpp> #include <libtorrent/hasher.hpp>
#include <libtorrent/kademlia/item.hpp> #include <libtorrent/kademlia/item.hpp>
#include <libtorrent/bencode.hpp> #include <libtorrent/bencode.hpp>
#include <libtorrent/ed25519.hpp>
#include "ed25519.hpp"
#ifdef TORRENT_DEBUG #ifdef TORRENT_DEBUG
#include "libtorrent/lazy_entry.hpp" #include "libtorrent/lazy_entry.hpp"

View File

@ -36,7 +36,8 @@ POSSIBILITY OF SUCH DAMAGE.
#include "libtorrent/alert_types.hpp" #include "libtorrent/alert_types.hpp"
#include "libtorrent/bencode.hpp" // for bencode() #include "libtorrent/bencode.hpp" // for bencode()
#include "libtorrent/kademlia/item.hpp" // for sign_mutable_item #include "libtorrent/kademlia/item.hpp" // for sign_mutable_item
#include "ed25519.h" #include "libtorrent/ed25519.h"
#include <boost/bind.hpp> #include <boost/bind.hpp>
#include <stdlib.h> #include <stdlib.h>