You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rust-sha1/0001-deps-update-openssl-to...

27 lines
761 B

From fdc4e5c7507f8beb55326357bce4a7f90f97a953 Mon Sep 17 00:00:00 2001
From: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Date: Sat, 13 Jan 2018 11:15:25 +0100
Subject: [PATCH] deps: update openssl to 0.10
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
---
src/lib.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib.rs b/src/lib.rs
index e29f263..29cb09b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -526,7 +526,7 @@ mod tests {
m.update(&bytes[..len]);
r.update(&bytes[..len]).unwrap();
}
- assert_eq!(r.finish2().unwrap().as_ref(), &m.digest().bytes());
+ assert_eq!(r.finish().unwrap().as_ref(), &m.digest().bytes());
}
}
}
--
2.15.1