2 个版本
0.1.1 | 2024年1月25日 |
---|---|
0.1.0 | 2024年1月25日 |
#2 in #juxt
9KB
138 行
juxt_md5
仅 md5,没有其他
使用方法
use std::fs::read;
use std::str::FromStr;
use just_md5::Md5;
fn main() {
println!("{}", Md5::from_str("just_md5").unwrap());
println!("{}", Md5::from_vec(&mut read("path to a file").unwrap()));
}