1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-03 17:08:35 -05:00

refactor: reuse FastInsecureHasher in get_check_hash (#15354)

This commit is contained in:
David Sherret 2022-07-30 11:43:03 -04:00 committed by crowlkats
parent f3a496214c
commit ef6968116f
No known key found for this signature in database
GPG key ID: A82C9D461FC483E8
2 changed files with 8 additions and 7 deletions

5
cli/cache/common.rs vendored
View file

@ -24,6 +24,11 @@ impl FastInsecureHasher {
self
}
pub fn write_u8(&mut self, value: u8) -> &mut Self {
self.0.write_u8(value);
self
}
pub fn write_u64(&mut self, value: u64) -> &mut Self {
self.0.write_u64(value);
self

View file

@ -382,11 +382,7 @@ fn get_check_hash(
graph_data: &GraphData,
options: &CheckOptions,
) -> CheckHashResult {
// twox hash is insecure, but fast so it works for our purposes
use std::hash::Hasher;
use twox_hash::XxHash64;
let mut hasher = XxHash64::default();
let mut hasher = FastInsecureHasher::new();
hasher.write_u8(match options.type_check_mode {
TypeCheckMode::All => 0,
TypeCheckMode::Local => 1,
@ -437,8 +433,8 @@ fn get_check_hash(
| MediaType::Wasm
| MediaType::Unknown => continue,
}
hasher.write(specifier.as_str().as_bytes());
hasher.write(code.as_bytes());
hasher.write_str(specifier.as_str());
hasher.write_str(code);
}
}