mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
More of 10793
This commit is contained in:
parent
5857ec7154
commit
5f8bcacd7f
@ -276,11 +276,11 @@ bool CBitcoinAddress::GetIndexKey(uint160& hashBytes, int& type) const
|
||||
if (!IsValid()) {
|
||||
return false;
|
||||
} else if (vchVersion == Params().Base58Prefix(CChainParams::PUBKEY_ADDRESS)) {
|
||||
memcpy(&hashBytes, &vchData[0], 20);
|
||||
memcpy(&hashBytes, vchData.data(), 20);
|
||||
type = 1;
|
||||
return true;
|
||||
} else if (vchVersion == Params().Base58Prefix(CChainParams::SCRIPT_ADDRESS)) {
|
||||
memcpy(&hashBytes, &vchData[0], 20);
|
||||
memcpy(&hashBytes, vchData.data(), 20);
|
||||
type = 2;
|
||||
return true;
|
||||
}
|
||||
|
@ -66,7 +66,7 @@ static void HASH_DSHA256_0032b(benchmark::State& state)
|
||||
std::vector<uint8_t> in(32,0);
|
||||
while (state.KeepRunning()) {
|
||||
for (int i = 0; i < 1000000; i++) {
|
||||
CHash256().Write(in.data(), in.size()).Finalize(&in[0]);
|
||||
CHash256().Write(in.data(), in.size()).Finalize(in.data());
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -123,42 +123,42 @@ static void HASH_DSHA256_0032b_single(benchmark::State& state)
|
||||
{
|
||||
std::vector<uint8_t> in(32,0);
|
||||
while (state.KeepRunning())
|
||||
CHash256().Write(in.data(), in.size()).Finalize(&in[0]);
|
||||
CHash256().Write(in.data(), in.size()).Finalize(in.data());
|
||||
}
|
||||
|
||||
static void HASH_DSHA256_0080b_single(benchmark::State& state)
|
||||
{
|
||||
std::vector<uint8_t> in(80,0);
|
||||
while (state.KeepRunning())
|
||||
CHash256().Write(in.data(), in.size()).Finalize(&in[0]);
|
||||
CHash256().Write(in.data(), in.size()).Finalize(in.data());
|
||||
}
|
||||
|
||||
static void HASH_DSHA256_0128b_single(benchmark::State& state)
|
||||
{
|
||||
std::vector<uint8_t> in(128,0);
|
||||
while (state.KeepRunning())
|
||||
CHash256().Write(in.data(), in.size()).Finalize(&in[0]);
|
||||
CHash256().Write(in.data(), in.size()).Finalize(in.data());
|
||||
}
|
||||
|
||||
static void HASH_DSHA256_0512b_single(benchmark::State& state)
|
||||
{
|
||||
std::vector<uint8_t> in(512,0);
|
||||
while (state.KeepRunning())
|
||||
CHash256().Write(in.data(), in.size()).Finalize(&in[0]);
|
||||
CHash256().Write(in.data(), in.size()).Finalize(in.data());
|
||||
}
|
||||
|
||||
static void HASH_DSHA256_1024b_single(benchmark::State& state)
|
||||
{
|
||||
std::vector<uint8_t> in(1024,0);
|
||||
while (state.KeepRunning())
|
||||
CHash256().Write(in.data(), in.size()).Finalize(&in[0]);
|
||||
CHash256().Write(in.data(), in.size()).Finalize(in.data());
|
||||
}
|
||||
|
||||
static void HASH_DSHA256_2048b_single(benchmark::State& state)
|
||||
{
|
||||
std::vector<uint8_t> in(2048,0);
|
||||
while (state.KeepRunning())
|
||||
CHash256().Write(in.data(), in.size()).Finalize(&in[0]);
|
||||
CHash256().Write(in.data(), in.size()).Finalize(in.data());
|
||||
}
|
||||
|
||||
static void HASH_X11(benchmark::State& state)
|
||||
|
@ -37,7 +37,7 @@ SecureString CMnemonic::Generate(int strength)
|
||||
return SecureString();
|
||||
}
|
||||
SecureVector data(32);
|
||||
GetStrongRandBytes(&data[0], 32);
|
||||
GetStrongRandBytes(data.data(), 32);
|
||||
SecureString mnemonic = FromData(data, strength / 8);
|
||||
return mnemonic;
|
||||
}
|
||||
@ -50,11 +50,11 @@ SecureString CMnemonic::FromData(const SecureVector& data, int len)
|
||||
}
|
||||
|
||||
SecureVector checksum(32);
|
||||
CSHA256().Write(&data[0], len).Finalize(&checksum[0]);
|
||||
CSHA256().Write(data.data(), len).Finalize(checksum.data());
|
||||
|
||||
// data
|
||||
SecureVector bits(len);
|
||||
memcpy(&bits[0], &data[0], len);
|
||||
memcpy(bits.data(), data.data(), len);
|
||||
// checksum
|
||||
bits.push_back(checksum[0]);
|
||||
|
||||
@ -132,7 +132,7 @@ bool CMnemonic::Check(SecureString mnemonic)
|
||||
return false;
|
||||
}
|
||||
bits[32] = bits[nWordCount * 4 / 3];
|
||||
CSHA256().Write(&bits[0], nWordCount * 4 / 3).Finalize(&bits[0]);
|
||||
CSHA256().Write(bits.data(), nWordCount * 4 / 3).Finalize(bits.data());
|
||||
|
||||
bool fResult = 0;
|
||||
if (nWordCount == 12) {
|
||||
@ -158,5 +158,5 @@ void CMnemonic::ToSeed(SecureString mnemonic, SecureString passphrase, SecureVec
|
||||
// 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[0], vchSalt.size(), 2048, EVP_sha512(), 64, &seedRet[0]);
|
||||
PKCS5_PBKDF2_HMAC(mnemonic.c_str(), mnemonic.size(), vchSalt.data(), vchSalt.size(), 2048, EVP_sha512(), 64, seedRet.data());
|
||||
}
|
||||
|
@ -97,7 +97,7 @@ private:
|
||||
|
||||
// read data and checksum from file
|
||||
try {
|
||||
filein.read((char *)&vchData[0], dataSize);
|
||||
filein.read((char *)vchData.data(), dataSize);
|
||||
filein >> hashIn;
|
||||
}
|
||||
catch (std::exception &e) {
|
||||
|
@ -53,7 +53,7 @@ void CHDChain::Debug(const std::string& strName) const
|
||||
std::cout << "seed: " << HexStr(vchSeed).c_str() << std::endl;
|
||||
|
||||
CExtKey extkey;
|
||||
extkey.SetMaster(&vchSeed[0], vchSeed.size());
|
||||
extkey.SetMaster(vchSeed.data(), vchSeed.size());
|
||||
|
||||
CBitcoinExtKey b58extkey;
|
||||
b58extkey.SetKey(extkey);
|
||||
@ -158,7 +158,7 @@ void CHDChain::DeriveChildExtKey(uint32_t nAccountIndex, bool fInternal, uint32_
|
||||
CExtKey changeKey; //key at m/purpose'/coin_type'/account'/change
|
||||
CExtKey childKey; //key at m/purpose'/coin_type'/account'/change/address_index
|
||||
|
||||
masterKey.SetMaster(&vchSeed[0], vchSeed.size());
|
||||
masterKey.SetMaster(vchSeed.data(), vchSeed.size());
|
||||
|
||||
// Use hardened derivation for purpose, coin_type and account
|
||||
// (keys >= 0x80000000 are hardened after bip32)
|
||||
|
@ -41,7 +41,7 @@ SecureString DecodeBase64Secure(const SecureString& sInput)
|
||||
BIO *b64, *mem;
|
||||
b64 = BIO_new(BIO_f_base64());
|
||||
BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL); //Do not use newlines to flush buffer
|
||||
mem = BIO_new_mem_buf((void *) &sInput[0], sInput.size());
|
||||
mem = BIO_new_mem_buf((void *) sInput.data(), sInput.size());
|
||||
BIO_push(b64, mem);
|
||||
|
||||
// Prepare buffer to receive decoded data
|
||||
@ -53,7 +53,7 @@ SecureString DecodeBase64Secure(const SecureString& sInput)
|
||||
|
||||
// Decode the string
|
||||
size_t nLen;
|
||||
nLen = BIO_read(b64, (void *) &output[0], sInput.size());
|
||||
nLen = BIO_read(b64, (void *) output.data(), sInput.size());
|
||||
output.resize(nLen);
|
||||
|
||||
// Free memory
|
||||
@ -72,7 +72,7 @@ SecureString EncodeBase64Secure(const SecureString& sInput)
|
||||
BIO_push(b64, mem);
|
||||
|
||||
// Decode the string
|
||||
BIO_write(b64, &sInput[0], sInput.size());
|
||||
BIO_write(b64, sInput.data(), sInput.size());
|
||||
(void) BIO_flush(b64);
|
||||
|
||||
// Create output variable from buffer mem ptr
|
||||
@ -145,10 +145,10 @@ std::string CKeePassIntegrator::CKeePassRequest::getJson()
|
||||
void CKeePassIntegrator::CKeePassRequest::init()
|
||||
{
|
||||
SecureString sIVSecure = generateRandomKey(KEEPASS_CRYPTO_BLOCK_SIZE);
|
||||
strIV = std::string(&sIVSecure[0], sIVSecure.size());
|
||||
strIV = std::string(sIVSecure.data(), sIVSecure.size());
|
||||
// Generate Nonce, Verifier and RequestType
|
||||
SecureString sNonceBase64Secure = EncodeBase64Secure(sIVSecure);
|
||||
addStrParameter("Nonce", std::string(&sNonceBase64Secure[0], sNonceBase64Secure.size())); // Plain
|
||||
addStrParameter("Nonce", std::string(sNonceBase64Secure.data(), sNonceBase64Secure.size())); // Plain
|
||||
addStrParameter("Verifier", sNonceBase64Secure); // Encoded
|
||||
addStrParameter("RequestType", strType);
|
||||
}
|
||||
@ -228,7 +228,7 @@ SecureString CKeePassIntegrator::generateRandomKey(size_t nSize)
|
||||
SecureString sKey;
|
||||
sKey.resize(nSize);
|
||||
|
||||
GetStrongRandBytes((unsigned char *) &sKey[0], nSize);
|
||||
GetStrongRandBytes((unsigned char *) sKey.data(), nSize);
|
||||
|
||||
return sKey;
|
||||
}
|
||||
@ -463,7 +463,7 @@ void CKeePassIntegrator::rpcAssociate(std::string& strIdRet, SecureString& sKeyB
|
||||
CKeePassRequest request(sKey, "associate");
|
||||
|
||||
sKeyBase64Ret = EncodeBase64Secure(sKey);
|
||||
request.addStrParameter("Key", std::string(&sKeyBase64Ret[0], sKeyBase64Ret.size()));
|
||||
request.addStrParameter("Key", std::string(sKeyBase64Ret.data(), sKeyBase64Ret.size()));
|
||||
|
||||
int nStatus;
|
||||
std::string strResponse;
|
||||
|
@ -65,7 +65,7 @@ bool CHashSigner::VerifyHash(const uint256& hash, const CKeyID& keyID, const std
|
||||
if(pubkeyFromSig.GetID() != keyID) {
|
||||
strErrorRet = strprintf("Keys don't match: pubkey=%s, pubkeyFromSig=%s, hash=%s, vchSig=%s",
|
||||
keyID.ToString(), pubkeyFromSig.GetID().ToString(), hash.ToString(),
|
||||
EncodeBase64(&vchSig[0], vchSig.size()));
|
||||
EncodeBase64(vchSig.data(), vchSig.size()));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -387,7 +387,7 @@ WalletModel::SendCoinsReturn WalletModel::sendCoins(WalletModelTransaction &tran
|
||||
|
||||
CDataStream ssTx(SER_NETWORK, PROTOCOL_VERSION);
|
||||
ssTx << *newTx->tx;
|
||||
transaction_array.append(&(ssTx[0]), ssTx.size());
|
||||
transaction_array.append(ssTx.data(), ssTx.size());
|
||||
}
|
||||
|
||||
// Add addresses / update labels that we've sent to the address book,
|
||||
|
@ -54,7 +54,7 @@ BOOST_AUTO_TEST_CASE(bip39_vectors)
|
||||
CExtKey key;
|
||||
CExtPubKey pubkey;
|
||||
|
||||
key.SetMaster(&seed[0], 64);
|
||||
key.SetMaster(seed.data(), 64);
|
||||
pubkey = key.Neuter();
|
||||
|
||||
CBitcoinExtKey b58key;
|
||||
|
Loading…
Reference in New Issue
Block a user