Skip to content

Commit

Permalink
Clean-up cargo checks
Browse files Browse the repository at this point in the history
  • Loading branch information
aitorpazos committed Mar 11, 2021
1 parent 416c314 commit 7595694
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ impl Params {
let p = value_t!(matches, "p", u32).unwrap_or_else(|e| e.exit());
let dk_len = value_t!(matches, "len", usize).unwrap_or_else(|e| e.exit());
Params {
log_n: log_n,
r: r,
p: p,
dk_len: dk_len,
log_n,
r,
p,
dk_len,
}
}
}
Expand Down Expand Up @@ -94,5 +94,5 @@ fn print_hex(prefix: &str, bytes: &[u8]) {
for b in bytes.iter() {
print!("{:x}", b);
}
println!("");
println!("\n");
}

0 comments on commit 7595694

Please sign in to comment.