From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- third_party/rust/md-5/tests/mod.rs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 third_party/rust/md-5/tests/mod.rs (limited to 'third_party/rust/md-5/tests/mod.rs') diff --git a/third_party/rust/md-5/tests/mod.rs b/third_party/rust/md-5/tests/mod.rs new file mode 100644 index 0000000000..316cb8fbe9 --- /dev/null +++ b/third_party/rust/md-5/tests/mod.rs @@ -0,0 +1,15 @@ +use digest::dev::{feed_rand_16mib, fixed_reset_test}; +use hex_literal::hex; +use md5::{Digest, Md5}; + +digest::new_test!(md5_main, "md5", md5::Md5, fixed_reset_test); + +#[test] +fn md5_rand() { + let mut h = Md5::new(); + feed_rand_16mib(&mut h); + assert_eq!( + h.finalize()[..], + hex!("61aec26f1b909578ef638ae02dac0977")[..] + ); +} -- cgit v1.2.3