update format
This commit is contained in:
@@ -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),
|
||||||
_ => {
|
_ => {
|
||||||
|
|||||||
Reference in New Issue
Block a user