merged changes from RC_1_0
This commit is contained in:
parent
30d561d0c5
commit
f15182a737
|
@ -131,7 +131,6 @@ DOCS_PAGES = \
|
|||
ED25519_SOURCE = \
|
||||
ed25519/readme.md \
|
||||
ed25519/test.cpp \
|
||||
ed25519/src/ed25519.hpp \
|
||||
ed25519/src/fe.h \
|
||||
ed25519/src/fixedint.h \
|
||||
ed25519/src/ge.h \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "ed25519.hpp"
|
||||
#include "libtorrent/ed25519.hpp"
|
||||
#include "ge.h"
|
||||
#include "sc.h"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "ed25519.hpp"
|
||||
#include "libtorrent/ed25519.hpp"
|
||||
#include "fe.h"
|
||||
|
||||
void ed25519_key_exchange(unsigned char *shared_secret
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "ed25519.hpp"
|
||||
#include "libtorrent/ed25519.hpp"
|
||||
#include "sha512.h"
|
||||
#include "ge.h"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "ed25519.hpp"
|
||||
#include "libtorrent/ed25519.hpp"
|
||||
|
||||
#ifndef ED25519_NO_SEED
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "ed25519.hpp"
|
||||
#include "libtorrent/ed25519.hpp"
|
||||
#include "sha512.h"
|
||||
#include "ge.h"
|
||||
#include "sc.h"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "ed25519.hpp"
|
||||
#include "libtorrent/ed25519.hpp"
|
||||
#include "sha512.h"
|
||||
#include "ge.h"
|
||||
#include "sc.h"
|
||||
|
|
|
@ -47,6 +47,7 @@ nobase_include_HEADERS = \
|
|||
disk_io_thread.hpp \
|
||||
disk_observer.hpp \
|
||||
disk_job_pool.hpp \
|
||||
ed25519.hpp \
|
||||
entry.hpp \
|
||||
enum_net.hpp \
|
||||
error.hpp \
|
||||
|
|
|
@ -33,8 +33,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||
#include <libtorrent/hasher.hpp>
|
||||
#include <libtorrent/kademlia/item.hpp>
|
||||
#include <libtorrent/bencode.hpp>
|
||||
|
||||
#include "ed25519.hpp"
|
||||
#include <libtorrent/ed25519.hpp>
|
||||
|
||||
#ifdef TORRENT_DEBUG
|
||||
#include "libtorrent/lazy_entry.hpp"
|
||||
|
|
|
@ -36,7 +36,8 @@ POSSIBILITY OF SUCH DAMAGE.
|
|||
#include "libtorrent/alert_types.hpp"
|
||||
#include "libtorrent/bencode.hpp" // for bencode()
|
||||
#include "libtorrent/kademlia/item.hpp" // for sign_mutable_item
|
||||
#include "ed25519.h"
|
||||
#include "libtorrent/ed25519.h"
|
||||
|
||||
#include <boost/bind.hpp>
|
||||
|
||||
#include <stdlib.h>
|
||||
|
|
Loading…
Reference in New Issue