mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-08-12 15:26:52 +00:00
rename hash() to sha256sum(), we might want to change it at some places
This commit is contained in:
+1
-1
@@ -10,7 +10,7 @@ pub trait PartitionKey {
|
||||
|
||||
impl PartitionKey for String {
|
||||
fn hash(&self) -> Hash {
|
||||
hash(self.as_bytes())
|
||||
sha256sum(self.as_bytes())
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ impl TableFullReplication {
|
||||
|
||||
let mut nodes = vec![];
|
||||
for (node, _) in ring.config.members.iter() {
|
||||
let node_ranking = hash(&[node.as_slice(), my_id.as_slice()].concat());
|
||||
let node_ranking = sha256sum(&[node.as_slice(), my_id.as_slice()].concat());
|
||||
nodes.push((*node, node_ranking));
|
||||
}
|
||||
nodes.sort_by(|(_, rank1), (_, rank2)| rank1.cmp(rank2));
|
||||
|
||||
@@ -322,7 +322,7 @@ where
|
||||
.range(range.begin.clone()..range.end.clone())
|
||||
{
|
||||
let (key, value) = item?;
|
||||
let key_hash = hash(&key[..]);
|
||||
let key_hash = sha256sum(&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, hash(&value[..])));
|
||||
children.push((item_range, sha256sum(&value[..])));
|
||||
}
|
||||
Ok(RangeChecksum {
|
||||
bounds: range.clone(),
|
||||
@@ -378,7 +378,7 @@ where
|
||||
}
|
||||
let found_limit = sub_ck.found_limit.unwrap();
|
||||
|
||||
let actual_limit_hash = hash(&found_limit[..]);
|
||||
let actual_limit_hash = sha256sum(&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(hash(&rmp_to_vec_all_named(&v)?[..]))
|
||||
Some(sha256sum(&rmp_to_vec_all_named(&v)?[..]))
|
||||
} else {
|
||||
None
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user