Store full indices in the same char* as the hash

This commit is contained in:
Jack Grigg
2016-05-06 14:13:15 +12:00
parent 639c40047f
commit 29d9986c83
2 changed files with 73 additions and 27 deletions

View File

@@ -35,6 +35,28 @@ int Equihash<N,K>::InitialiseState(eh_HashState& base_state)
personalization); personalization);
} }
void EhIndexToArray(eh_index i, unsigned char* array)
{
assert(sizeof(eh_index) == 4);
array[0] = (i >> 24) & 0xFF;
array[1] = (i >> 16) & 0xFF;
array[2] = (i >> 8) & 0xFF;
array[3] = i & 0xFF;
}
eh_index ArrayToEhIndex(unsigned char* array)
{
assert(sizeof(eh_index) == 4);
eh_index ret {array[0]};
ret <<= 8;
ret |= array[1];
ret <<= 8;
ret |= array[2];
ret <<= 8;
ret |= array[3];
return ret;
}
eh_trunc TruncateIndex(eh_index i, unsigned int ilen) eh_trunc TruncateIndex(eh_index i, unsigned int ilen)
{ {
// Truncate to 8 bits // Truncate to 8 bits
@@ -72,44 +94,58 @@ StepRow::StepRow(const StepRow& a) :
FullStepRow::FullStepRow(unsigned int n, const eh_HashState& base_state, eh_index i) : FullStepRow::FullStepRow(unsigned int n, const eh_HashState& base_state, eh_index i) :
StepRow {n, base_state, i}, StepRow {n, base_state, i},
indices {i} lenIndices {sizeof(eh_index)}
{ {
assert(indices.size() == 1); unsigned char* p = new unsigned char[len+lenIndices];
std::copy(hash, hash+len, p);
EhIndexToArray(i, p+len);
delete[] hash;
hash = p;
}
FullStepRow::FullStepRow(const FullStepRow& a) :
StepRow {a},
lenIndices {a.lenIndices}
{
unsigned char* p = new unsigned char[a.len+a.lenIndices];
std::copy(a.hash, a.hash+a.len+a.lenIndices, p);
delete[] hash;
hash = p;
} }
FullStepRow::FullStepRow(const FullStepRow& a, const FullStepRow& b, int trim) : FullStepRow::FullStepRow(const FullStepRow& a, const FullStepRow& b, int trim) :
StepRow {a} StepRow {a},
lenIndices {a.lenIndices+b.lenIndices}
{ {
if (a.len != b.len) { if (a.len != b.len) {
throw std::invalid_argument("Hash length differs"); throw std::invalid_argument("Hash length differs");
} }
if (a.indices.size() != b.indices.size()) { if (a.lenIndices != b.lenIndices) {
throw std::invalid_argument("Number of indices differs"); throw std::invalid_argument("Number of indices differs");
} }
unsigned char* p = new unsigned char[a.len-trim]; unsigned char* p = new unsigned char[a.len-trim+a.lenIndices+b.lenIndices];
for (int i = trim; i < a.len; i++) for (int i = trim; i < a.len; i++)
p[i-trim] = a.hash[i] ^ b.hash[i]; p[i-trim] = a.hash[i] ^ b.hash[i];
len = a.len-trim;
if (a.IndicesBefore(b)) {
std::copy(a.hash+a.len, a.hash+a.len+a.lenIndices, p+len);
std::copy(b.hash+b.len, b.hash+b.len+b.lenIndices, p+len+a.lenIndices);
} else {
std::copy(b.hash+b.len, b.hash+b.len+b.lenIndices, p+len);
std::copy(a.hash+a.len, a.hash+a.len+a.lenIndices, p+len+b.lenIndices);
}
delete[] hash; delete[] hash;
hash = p; hash = p;
len = a.len-trim;
indices.reserve(a.indices.size() + b.indices.size());
if (a.IndicesBefore(b)) {
indices.insert(indices.end(), a.indices.begin(), a.indices.end());
indices.insert(indices.end(), b.indices.begin(), b.indices.end());
} else {
indices.insert(indices.end(), b.indices.begin(), b.indices.end());
indices.insert(indices.end(), a.indices.begin(), a.indices.end());
}
} }
FullStepRow& FullStepRow::operator=(const FullStepRow& a) FullStepRow& FullStepRow::operator=(const FullStepRow& a)
{ {
unsigned char* p = new unsigned char[a.len]; unsigned char* p = new unsigned char[a.len+a.lenIndices];
std::copy(a.hash, a.hash+a.len, p); std::copy(a.hash, a.hash+a.len+a.lenIndices, p);
delete[] hash; delete[] hash;
hash = p; hash = p;
len = a.len; len = a.len;
indices = a.indices; lenIndices = a.lenIndices;
return *this; return *this;
} }
@@ -121,6 +157,15 @@ bool StepRow::IsZero()
return res == 0; return res == 0;
} }
std::vector<eh_index> FullStepRow::GetIndices() const
{
std::vector<eh_index> ret;
for (int i = 0; i < lenIndices; i += sizeof(eh_index)) {
ret.push_back(ArrayToEhIndex(hash+len+i));
}
return ret;
}
bool HasCollision(StepRow& a, StepRow& b, int l) bool HasCollision(StepRow& a, StepRow& b, int l)
{ {
bool res = true; bool res = true;
@@ -132,8 +177,8 @@ bool HasCollision(StepRow& a, StepRow& b, int l)
// Checks if the intersection of a.indices and b.indices is empty // Checks if the intersection of a.indices and b.indices is empty
bool DistinctIndices(const FullStepRow& a, const FullStepRow& b) bool DistinctIndices(const FullStepRow& a, const FullStepRow& b)
{ {
std::vector<eh_index> aSrt(a.indices); std::vector<eh_index> aSrt = a.GetIndices();
std::vector<eh_index> bSrt(b.indices); std::vector<eh_index> bSrt = b.GetIndices();
std::sort(aSrt.begin(), aSrt.end()); std::sort(aSrt.begin(), aSrt.end());
std::sort(bSrt.begin(), bSrt.end()); std::sort(bSrt.begin(), bSrt.end());
@@ -152,7 +197,7 @@ bool DistinctIndices(const FullStepRow& a, const FullStepRow& b)
bool IsValidBranch(const FullStepRow& a, const unsigned int ilen, const eh_trunc t) bool IsValidBranch(const FullStepRow& a, const unsigned int ilen, const eh_trunc t)
{ {
return TruncateIndex(a.indices[0], ilen) == t; return TruncateIndex(ArrayToEhIndex(a.hash+a.len), ilen) == t;
} }
TruncatedStepRow::TruncatedStepRow(unsigned int n, const eh_HashState& base_state, eh_index i, unsigned int ilen) : TruncatedStepRow::TruncatedStepRow(unsigned int n, const eh_HashState& base_state, eh_index i, unsigned int ilen) :
@@ -299,7 +344,7 @@ std::set<std::vector<eh_index>> Equihash<N,K>::BasicSolve(const eh_HashState& ba
for (int i = 0; i < X.size() - 1; i++) { for (int i = 0; i < X.size() - 1; i++) {
FullStepRow res(X[i], X[i+1], 0); FullStepRow res(X[i], X[i+1], 0);
if (res.IsZero() && DistinctIndices(X[i], X[i+1])) { if (res.IsZero() && DistinctIndices(X[i], X[i+1])) {
solns.insert(res.GetSolution()); solns.insert(res.GetIndices());
} }
} }
} else } else
@@ -500,7 +545,7 @@ std::set<std::vector<eh_index>> Equihash<N,K>::OptimisedSolve(const eh_HashState
// We are at the top of the tree // We are at the top of the tree
assert(X.size() == 1); assert(X.size() == 1);
for (FullStepRow row : X[0]) { for (FullStepRow row : X[0]) {
solns.insert(row.GetSolution()); solns.insert(row.GetIndices());
} }
goto deletesolution; goto deletesolution;

View File

@@ -21,6 +21,8 @@ typedef crypto_generichash_blake2b_state eh_HashState;
typedef uint32_t eh_index; typedef uint32_t eh_index;
typedef uint8_t eh_trunc; typedef uint8_t eh_trunc;
eh_index ArrayToEhIndex(unsigned char* array);
class StepRow class StepRow
{ {
friend class CompareSR; friend class CompareSR;
@@ -57,20 +59,19 @@ bool HasCollision(StepRow& a, StepRow& b, int l);
class FullStepRow : public StepRow class FullStepRow : public StepRow
{ {
private: private:
std::vector<eh_index> indices; unsigned int lenIndices;
public: public:
FullStepRow(unsigned int n, const eh_HashState& base_state, eh_index i); FullStepRow(unsigned int n, const eh_HashState& base_state, eh_index i);
~FullStepRow() { } ~FullStepRow() { }
FullStepRow(const FullStepRow& a) : StepRow {a}, indices(a.indices) { } FullStepRow(const FullStepRow& a);
FullStepRow(const FullStepRow& a, const FullStepRow& b, int trim); FullStepRow(const FullStepRow& a, const FullStepRow& b, int trim);
FullStepRow& operator=(const FullStepRow& a); FullStepRow& operator=(const FullStepRow& a);
inline bool IndicesBefore(const FullStepRow& a) const { return indices[0] < a.indices[0]; } inline bool IndicesBefore(const FullStepRow& a) const { return ArrayToEhIndex(hash+len) < ArrayToEhIndex(a.hash+a.len); }
std::vector<eh_index> GetSolution() { return std::vector<eh_index>(indices); } std::vector<eh_index> GetIndices() const;
friend bool DistinctIndices(const FullStepRow& a, const FullStepRow& b);
friend bool IsValidBranch(const FullStepRow& a, const unsigned int ilen, const eh_trunc t); friend bool IsValidBranch(const FullStepRow& a, const unsigned int ilen, const eh_trunc t);
}; };