Replace some checksums where it makes sense

This commit is contained in:
Alex 2021-02-23 18:14:37 +01:00
parent e8e4418ca7
commit 6e6f7e8555
3 changed files with 7 additions and 6 deletions

View File

@ -141,7 +141,7 @@ impl Status {
writeln!(&mut nodes_txt, "{} {}", hex::encode(&id), status.addr).unwrap();
}
debug!("END --");
self.hash = sha256sum(nodes_txt.as_bytes());
self.hash = blake2sum(nodes_txt.as_bytes());
}
}

View File

@ -44,7 +44,7 @@ impl TableFullReplication {
let mut nodes = vec![];
for (node, _) in ring.config.members.iter() {
let node_ranking = sha256sum(&[node.as_slice(), my_id.as_slice()].concat());
let node_ranking = fasthash(&[node.as_slice(), my_id.as_slice()].concat());
nodes.push((*node, node_ranking));
}
nodes.sort_by(|(_, rank1), (_, rank2)| rank1.cmp(rank2));
@ -54,6 +54,7 @@ impl TableFullReplication {
.filter(|node| *node != my_id)
.take(self.write_factor)
.collect::<Vec<_>>();
neighbors.push(my_id);
self.neighbors.swap(Some(Arc::new(Neighbors {
ring,

View File

@ -322,7 +322,7 @@ where
.range(range.begin.clone()..range.end.clone())
{
let (key, value) = item?;
let key_hash = sha256sum(&key[..]);
let key_hash = blake2sum(&key[..]);
if children.len() > 0
&& key_hash.as_slice()[0..range.level]
.iter()
@ -340,7 +340,7 @@ where
end: vec![],
level: 0,
};
children.push((item_range, sha256sum(&value[..])));
children.push((item_range, blake2sum(&value[..])));
}
Ok(RangeChecksum {
bounds: range.clone(),
@ -378,7 +378,7 @@ where
}
let found_limit = sub_ck.found_limit.unwrap();
let actual_limit_hash = sha256sum(&found_limit[..]);
let actual_limit_hash = blake2sum(&found_limit[..]);
if actual_limit_hash.as_slice()[0..range.level]
.iter()
.all(|x| *x == 0u8)
@ -426,7 +426,7 @@ where
);
let hash = if v.children.len() > 0 {
Some(sha256sum(&rmp_to_vec_all_named(&v)?[..]))
Some(blake2sum(&rmp_to_vec_all_named(&v)?[..]))
} else {
None
};