mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
Move bls stuff from crypto/ to bls/
This commit is contained in:
parent
80fd096b07
commit
9c8e4ac76b
@ -314,8 +314,6 @@ crypto_libdash_crypto_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) $(PIC_FLAGS)
|
||||
crypto_libdash_crypto_a_SOURCES = \
|
||||
crypto/aes.cpp \
|
||||
crypto/aes.h \
|
||||
crypto/bls.cpp \
|
||||
crypto/bls.h \
|
||||
crypto/common.h \
|
||||
crypto/hmac_sha256.cpp \
|
||||
crypto/hmac_sha256.h \
|
||||
@ -364,6 +362,8 @@ libdash_consensus_a_SOURCES = \
|
||||
amount.h \
|
||||
arith_uint256.cpp \
|
||||
arith_uint256.h \
|
||||
bls/bls.cpp \
|
||||
bls/bls.h \
|
||||
consensus/merkle.cpp \
|
||||
consensus/merkle.h \
|
||||
consensus/params.h \
|
||||
@ -422,10 +422,10 @@ libdash_common_a_SOURCES = \
|
||||
libdash_util_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
||||
libdash_util_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
||||
libdash_util_a_SOURCES = \
|
||||
crypto/bls_ies.cpp \
|
||||
crypto/bls_ies.h \
|
||||
crypto/bls_worker.cpp \
|
||||
crypto/bls_worker.h \
|
||||
bls/bls_ies.cpp \
|
||||
bls/bls_ies.h \
|
||||
bls/bls_worker.cpp \
|
||||
bls/bls_worker.h \
|
||||
support/lockedpool.cpp \
|
||||
chainparamsbase.cpp \
|
||||
clientversion.cpp \
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include "validation.h"
|
||||
#include "util.h"
|
||||
|
||||
#include "crypto/bls.h"
|
||||
#include "bls/bls.h"
|
||||
|
||||
void CleanupBLSTests();
|
||||
void CleanupBLSDkgTests();
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
#include "bench.h"
|
||||
#include "random.h"
|
||||
#include "crypto/bls_worker.h"
|
||||
#include "bls/bls_worker.h"
|
||||
#include "utiltime.h"
|
||||
|
||||
#include <iostream>
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
#include "bench.h"
|
||||
#include "random.h"
|
||||
#include "crypto/bls_worker.h"
|
||||
#include "bls/bls_worker.h"
|
||||
|
||||
extern CBLSWorker blsWorker;
|
||||
|
||||
|
@ -8,7 +8,7 @@
|
||||
#include "random.h"
|
||||
#include "streams.h"
|
||||
|
||||
#include "aes.h"
|
||||
#include "crypto/aes.h"
|
||||
|
||||
template <typename Out>
|
||||
static bool EncryptBlob(const void* in, size_t inSize, Out& out, const void* symKey, const void* iv)
|
@ -72,7 +72,7 @@
|
||||
#include <stdio.h>
|
||||
#include <memory>
|
||||
|
||||
#include "crypto/bls.h"
|
||||
#include "bls/bls.h"
|
||||
|
||||
#ifndef WIN32
|
||||
#include <signal.h>
|
||||
|
Loading…
Reference in New Issue
Block a user