Skip to content

Commit 3045b63

Browse files
committed
Run cargo fmt
1 parent 077c6b9 commit 3045b63

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/importers/aegis_encrypted.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,12 @@ fn get_params(slot: &AegisEncryptedSlot) -> Result<Params, String> {
119119
let p = slot.p.unwrap();
120120
let r = slot.r.unwrap();
121121

122-
match Params::new((n as f32).log2() as u8, r, p, scrypt::Params::RECOMMENDED_LEN) {
122+
match Params::new(
123+
(n as f32).log2() as u8,
124+
r,
125+
p,
126+
scrypt::Params::RECOMMENDED_LEN,
127+
) {
123128
Ok(result) => Ok(result),
124129
Err(e) => Err(format!("Error during scrypt params creation: {e:?}")),
125130
}

0 commit comments

Comments
 (0)