mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
8a1ec935a0
* scripted-diff: Replace #include "" with #include <> (ryanofsky) -BEGIN VERIFY SCRIPT- for f in \ src/*.cpp \ src/*.h \ src/bench/*.cpp \ src/bench/*.h \ src/compat/*.cpp \ src/compat/*.h \ src/consensus/*.cpp \ src/consensus/*.h \ src/crypto/*.cpp \ src/crypto/*.h \ src/crypto/ctaes/*.h \ src/policy/*.cpp \ src/policy/*.h \ src/primitives/*.cpp \ src/primitives/*.h \ src/qt/*.cpp \ src/qt/*.h \ src/qt/test/*.cpp \ src/qt/test/*.h \ src/rpc/*.cpp \ src/rpc/*.h \ src/script/*.cpp \ src/script/*.h \ src/support/*.cpp \ src/support/*.h \ src/support/allocators/*.h \ src/test/*.cpp \ src/test/*.h \ src/wallet/*.cpp \ src/wallet/*.h \ src/wallet/test/*.cpp \ src/wallet/test/*.h \ src/zmq/*.cpp \ src/zmq/*.h do base=${f%/*}/ relbase=${base#src/} sed -i "s:#include \"\(.*\)\"\(.*\):if test -e \$base'\\1'; then echo \"#include <\"\$relbase\"\\1>\\2\"; else echo \"#include <\\1>\\2\"; fi:e" $f done -END VERIFY SCRIPT- Signed-off-by: Pasta <pasta@dashboost.org> * scripted-diff: Replace #include "" with #include <> (Dash Specific) -BEGIN VERIFY SCRIPT- for f in \ src/bls/*.cpp \ src/bls/*.h \ src/evo/*.cpp \ src/evo/*.h \ src/governance/*.cpp \ src/governance/*.h \ src/llmq/*.cpp \ src/llmq/*.h \ src/masternode/*.cpp \ src/masternode/*.h \ src/privatesend/*.cpp \ src/privatesend/*.h do base=${f%/*}/ relbase=${base#src/} sed -i "s:#include \"\(.*\)\"\(.*\):if test -e \$base'\\1'; then echo \"#include <\"\$relbase\"\\1>\\2\"; else echo \"#include <\\1>\\2\"; fi:e" $f done -END VERIFY SCRIPT- Signed-off-by: Pasta <pasta@dashboost.org> * build: Remove -I for everything but project root Remove -I from build system for everything but the project root, and built-in dependencies. Signed-off-by: Pasta <pasta@dashboost.org> # Conflicts: # src/Makefile.test.include * qt: refactor: Use absolute include paths in .ui files * qt: refactor: Changes to make include paths absolute This makes all include paths in the GUI absolute. Many changes are involved as every single source file in src/qt/ assumes to be able to use relative includes. Signed-off-by: Pasta <pasta@dashboost.org> # Conflicts: # src/qt/dash.cpp # src/qt/optionsmodel.cpp # src/qt/test/rpcnestedtests.cpp * test: refactor: Use absolute include paths for test data files * Recommend #include<> syntax in developer notes * refactor: Include obj/build.h instead of build.h * END BACKPORT #11651 Remove trailing whitespace causing travis failure * fix backport 11651 Signed-off-by: Pasta <pasta@dashboost.org> * More of 11651 * fix blockchain.cpp Signed-off-by: pasta <pasta@dashboost.org> * Add missing "qt/" in includes * Add missing "test/" in includes * Fix trailing whitespaces Co-authored-by: Wladimir J. van der Laan <laanwj@gmail.com> Co-authored-by: Russell Yanofsky <russ@yanofsky.org> Co-authored-by: MeshCollider <dobsonsa68@gmail.com> Co-authored-by: UdjinM6 <UdjinM6@users.noreply.github.com>
163 lines
5.1 KiB
C++
163 lines
5.1 KiB
C++
/**
|
|
* Copyright (c) 2013-2014 Tomas Dzetkulic
|
|
* Copyright (c) 2013-2014 Pavol Rusnak
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
* a copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included
|
|
* in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
|
|
* OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
// Source:
|
|
// https://github.com/trezor/trezor-crypto
|
|
|
|
#include <bip39.h>
|
|
#include <bip39_english.h>
|
|
#include <crypto/sha256.h>
|
|
#include <random.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
SecureString CMnemonic::Generate(int strength)
|
|
{
|
|
if (strength % 32 || strength < 128 || strength > 256) {
|
|
return SecureString();
|
|
}
|
|
SecureVector data(32);
|
|
GetStrongRandBytes(data.data(), 32);
|
|
SecureString mnemonic = FromData(data, strength / 8);
|
|
return mnemonic;
|
|
}
|
|
|
|
// SecureString CMnemonic::FromData(const uint8_t *data, int len)
|
|
SecureString CMnemonic::FromData(const SecureVector& data, int len)
|
|
{
|
|
if (len % 4 || len < 16 || len > 32) {
|
|
return SecureString();
|
|
}
|
|
|
|
SecureVector checksum(32);
|
|
CSHA256().Write(data.data(), len).Finalize(checksum.data());
|
|
|
|
// data
|
|
SecureVector bits(len);
|
|
memcpy(bits.data(), data.data(), len);
|
|
// checksum
|
|
bits.push_back(checksum[0]);
|
|
|
|
int mlen = len * 3 / 4;
|
|
SecureString mnemonic;
|
|
|
|
int i, j, idx;
|
|
for (i = 0; i < mlen; i++) {
|
|
idx = 0;
|
|
for (j = 0; j < 11; j++) {
|
|
idx <<= 1;
|
|
idx += (bits[(i * 11 + j) / 8] & (1 << (7 - ((i * 11 + j) % 8)))) > 0;
|
|
}
|
|
mnemonic.append(wordlist[idx]);
|
|
if (i < mlen - 1) {
|
|
mnemonic += ' ';
|
|
}
|
|
}
|
|
|
|
return mnemonic;
|
|
}
|
|
|
|
bool CMnemonic::Check(SecureString mnemonic)
|
|
{
|
|
if (mnemonic.empty()) {
|
|
return false;
|
|
}
|
|
|
|
uint32_t nWordCount{};
|
|
|
|
for (size_t i = 0; i < mnemonic.size(); ++i) {
|
|
if (mnemonic[i] == ' ') {
|
|
nWordCount++;
|
|
}
|
|
}
|
|
nWordCount++;
|
|
// check number of words
|
|
if (nWordCount != 12 && nWordCount != 18 && nWordCount != 24) {
|
|
return false;
|
|
}
|
|
|
|
SecureString ssCurrentWord;
|
|
SecureVector bits(32 + 1);
|
|
|
|
uint32_t nWordIndex, ki, nBitsCount{};
|
|
|
|
for (size_t i = 0; i < mnemonic.size(); ++i)
|
|
{
|
|
ssCurrentWord = "";
|
|
while (i + ssCurrentWord.size() < mnemonic.size() && mnemonic[i + ssCurrentWord.size()] != ' ') {
|
|
if (ssCurrentWord.size() >= 9) {
|
|
return false;
|
|
}
|
|
ssCurrentWord += mnemonic[i + ssCurrentWord.size()];
|
|
}
|
|
i += ssCurrentWord.size();
|
|
nWordIndex = 0;
|
|
for (;;) {
|
|
if (!wordlist[nWordIndex]) { // word not found
|
|
return false;
|
|
}
|
|
if (ssCurrentWord == wordlist[nWordIndex]) { // word found on index nWordIndex
|
|
for (ki = 0; ki < 11; ki++) {
|
|
if (nWordIndex & (1 << (10 - ki))) {
|
|
bits[nBitsCount / 8] |= 1 << (7 - (nBitsCount % 8));
|
|
}
|
|
nBitsCount++;
|
|
}
|
|
break;
|
|
}
|
|
nWordIndex++;
|
|
}
|
|
}
|
|
if (nBitsCount != nWordCount * 11) {
|
|
return false;
|
|
}
|
|
bits[32] = bits[nWordCount * 4 / 3];
|
|
CSHA256().Write(bits.data(), nWordCount * 4 / 3).Finalize(bits.data());
|
|
|
|
bool fResult = 0;
|
|
if (nWordCount == 12) {
|
|
fResult = (bits[0] & 0xF0) == (bits[32] & 0xF0); // compare first 4 bits
|
|
} else
|
|
if (nWordCount == 18) {
|
|
fResult = (bits[0] & 0xFC) == (bits[32] & 0xFC); // compare first 6 bits
|
|
} else
|
|
if (nWordCount == 24) {
|
|
fResult = bits[0] == bits[32]; // compare 8 bits
|
|
}
|
|
|
|
return fResult;
|
|
}
|
|
|
|
// passphrase must be at most 256 characters or code may crash
|
|
void CMnemonic::ToSeed(SecureString mnemonic, SecureString passphrase, SecureVector& seedRet)
|
|
{
|
|
SecureString ssSalt = SecureString("mnemonic") + passphrase;
|
|
SecureVector vchSalt(ssSalt.begin(), ssSalt.end());
|
|
seedRet.resize(64);
|
|
// int PKCS5_PBKDF2_HMAC(const char *pass, int passlen,
|
|
// const unsigned char *salt, int saltlen, int iter,
|
|
// const EVP_MD *digest,
|
|
// int keylen, unsigned char *out);
|
|
PKCS5_PBKDF2_HMAC(mnemonic.c_str(), mnemonic.size(), vchSalt.data(), vchSalt.size(), 2048, EVP_sha512(), 64, seedRet.data());
|
|
}
|