Author: Michael R. Crusoe <crusoe@debian.org>
Description: Support the older 0.7.0 interface of md5
Forwarded: not-needed
--- sourmash.orig/src/core/src/sketch/minhash.rs
+++ sourmash/src/core/src/sketch/minhash.rs
@@ -310,7 +310,7 @@
                 md5_ctx.consume(&buffer);
                 buffer.clear();
             }
-            *data = Some(format!("{:x}", md5_ctx.finalize()));
+            *data = Some(format!("{:x}", md5_ctx.compute()));
         }
         data.clone().unwrap()
     }
@@ -1265,7 +1265,7 @@
                 md5_ctx.consume(&buffer);
                 buffer.clear();
             }
-            *data = Some(format!("{:x}", md5_ctx.finalize()));
+            *data = Some(format!("{:x}", md5_ctx.compute()));
         }
         data.clone().unwrap()
     }
