summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml4
-rw-r--r--src/package/source.rs45
-rw-r--r--src/source/mod.rs30
3 files changed, 41 insertions, 38 deletions
diff --git a/Cargo.toml b/Cargo.toml
index a2eeac9..f10dace 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,7 +20,6 @@ clap_generate = "3.0.0-beta.2"
colored = "2"
config = "0.10"
csv = "1.1"
-data-encoding = "2.3"
diesel = { version = "1.4", features = ["postgres", "chrono", "uuid", "serde_json"] }
env_logger = "0.8"
filters = "0.4.0"
@@ -39,9 +38,10 @@ regex = "1"
reqwest = { version = "0.10", features = [ "stream" ] }
resiter = "0.4"
result-inspect = "0.1"
-ring = "0.16"
serde = "1"
serde_json = "1"
+sha1 = { version = "0.6", features = ["std"] }
+sha2 = "0.9"
shiplift = { git = "https://github.com/softprops/shiplift", rev = "03cc8c075f86f1bd9e2c4e29872a0e8b9072c7f0" }
syntect = "4.4"
tar = "0.4"
diff --git a/src/package/source.rs b/src/package/source.rs
index 8312f1f..9584803 100644
--- a/src/package/source.rs
+++ b/src/package/source.rs
@@ -8,8 +8,6 @@
// SPDX-License-Identifier: EPL-2.0
//
-use std::io::Read;
-
use anyhow::Result;
use anyhow::anyhow;
use getset::Getters;
@@ -45,9 +43,9 @@ pub struct SourceHash {
}
impl SourceHash {
- pub fn matches_hash_of<R: Read>(&self, reader: R) -> Result<()> {
+ pub fn matches_hash_of(&self, buf: &[u8]) -> Result<()> {
trace!("Hashing buffer with: {:?}", self.hashtype);
- let h = self.hashtype.hash_from_reader(reader)?;
+ let h = self.hashtype.hash_buffer(&buf)?;
trace!("Hashing buffer with: {} finished", self.hashtype);
if h == self.value {
@@ -82,24 +80,29 @@ pub enum HashType {
}
impl HashType {
- fn hash_from_reader<R: Read>(&self, mut reader: R) -> Result<HashValue> {
- use ring::digest::{Context, SHA1_FOR_LEGACY_USE_ONLY, SHA256, SHA512};
- let mut context = match self {
- HashType::Sha1 => Context::new(&SHA1_FOR_LEGACY_USE_ONLY),
- HashType::Sha256 => Context::new(&SHA256),
- HashType::Sha512 => Context::new(&SHA512),
- };
- let mut buffer = [0; 1024];
-
- loop {
- let count = reader.read(&mut buffer)?;
- if count == 0 {
- break;
- }
- context.update(&buffer[..count]);
+ fn hash_buffer(&self, buffer: &[u8]) -> Result<HashValue> {
+ match self {
+ HashType::Sha1 => {
+ trace!("SHA1 hashing buffer");
+ let mut m = sha1::Sha1::new();
+ m.update(buffer);
+ Ok(HashValue(m.digest().to_string()))
+ },
+ HashType::Sha256 => {
+ trace!("SHA256 hashing buffer");
+ //let mut m = sha2::Sha256::new();
+ //m.update(buffer);
+ //Ok(HashValue(String::from(m.finalize())))
+ unimplemented!()
+ },
+ HashType::Sha512 => {
+ trace!("SHA512 hashing buffer");
+ //let mut m = sha2::Sha512::new();
+ //m.update(buffer);
+ //Ok(HashValue(String::from(m.finalize())))
+ unimplemented!()
+ },
}
-
- Ok(HashValue(data_encoding::HEXLOWER.encode(context.finish().as_ref())))
}
}
diff --git a/src/source/mod.rs b/src/source/mod.rs
index 75a1609..295d7a9 100644
--- a/src/source/mod.rs
+++ b/src/source/mod.rs
@@ -91,29 +91,29 @@ impl SourceEntry {
}
pub async fn verify_hash(&self) -> Result<()> {
+
let p = self.source_file_path();
- trace!("Reading: {}", p.display());
+ trace!("Reading to buffer: {}", p.display());
- // we can clone() here, because the object itself is just a representation of "what hash
- // type do we use here", which is rather cheap to clone (because it is
- // crate::package::SourceHash, that is not more than an enum + String).
- //
- // We need to clone to move into the closure below.
- let source_hash = self.package_source.hash().clone();
+ let path = p.clone();
+ let buf = tokio::task::spawn_blocking(move || {
+ use std::io::Read;
- tokio::task::spawn_blocking(move || {
+ let mut buf = vec![];
std::fs::OpenOptions::new()
.create(false)
.create_new(false)
.read(true)
- .open(&p)
- .map_err(Error::from)
- .map(std::io::BufReader::new)
- .and_then(|reader| {
- source_hash.matches_hash_of(reader)
- })
+ .open(path)?
+ .read_to_end(&mut buf)
+ .map(|_| buf)
})
- .await?
+ .await??;
+
+ trace!("Reading to buffer finished: {}", p.display());
+ self.package_source
+ .hash()
+ .matches_hash_of(&buf)
}
pub async fn create(&self) -> Result<tokio::fs::File> {