update format

This commit is contained in:
2019-11-24 13:20:48 +08:00
parent 16c1c7d178
commit 2cf731dd42

View File

@@ -68,9 +68,7 @@ fn main() -> XResult<()> {
if options.file_name_list.is_empty() { if options.file_name_list.is_empty() {
let boxed_digest = get_digest_by_algorithm(the_algo.as_str(), &options); let boxed_digest = get_digest_by_algorithm(the_algo.as_str(), &options);
match boxed_digest { match boxed_digest {
Some(mut digest) => { Some(mut digest) => println!("{} - ({})", calc_digest_stdin(&mut *digest)?, the_algo),
println!("{} - ({})", calc_digest_stdin(&mut *digest)?, the_algo);
},
None => match the_algo.as_str() { None => match the_algo.as_str() {
"SM3" => println!("{} - ({})", hex::encode(Sm3Hash::new(&read_full_stdin()?).get_hash()), the_algo), "SM3" => println!("{} - ({})", hex::encode(Sm3Hash::new(&read_full_stdin()?).get_hash()), the_algo),
_ => print_message(MessageType::ERROR, &format!("Unknown algorithm: {}", options.algorithm)), _ => print_message(MessageType::ERROR, &format!("Unknown algorithm: {}", options.algorithm)),
@@ -81,9 +79,7 @@ fn main() -> XResult<()> {
let the_fn = f.as_str(); let the_fn = f.as_str();
let boxed_digest = get_digest_by_algorithm(the_algo.as_str(), &options); let boxed_digest = get_digest_by_algorithm(the_algo.as_str(), &options);
match boxed_digest { match boxed_digest {
Some(mut digest) => { Some(mut digest) => println!("{} - {} ({})", calc_file_digest(&mut *digest, the_fn)?, the_fn, the_algo),
println!("{} - {} ({})", calc_file_digest(&mut *digest, the_fn)?, the_fn, the_algo);
},
None => match the_algo.as_str() { None => match the_algo.as_str() {
"SM3" => println!("{} - {} ({})", hex::encode(Sm3Hash::new(&read_file_full(the_fn)?).get_hash()), the_fn, the_algo), "SM3" => println!("{} - {} ({})", hex::encode(Sm3Hash::new(&read_file_full(the_fn)?).get_hash()), the_fn, the_algo),
_ => { _ => {