formatting

This commit is contained in:
Michal Kucharczyk 2023-11-15 07:46:33 +01:00
parent a84eb0012e
commit 09d89c5048
No known key found for this signature in database
GPG Key ID: 79BC40F580782CC1
1 changed files with 3 additions and 8 deletions

View File

@ -36,10 +36,10 @@ extern crate bitcoin_hashes;
#[cfg(feature = "std")] #[cfg(feature = "std")]
extern crate unicode_normalization; extern crate unicode_normalization;
#[cfg(feature = "rand_core")]
pub extern crate rand_core;
#[cfg(feature = "rand")] #[cfg(feature = "rand")]
pub extern crate crate_rand as rand; pub extern crate crate_rand as rand;
#[cfg(feature = "rand_core")]
pub extern crate rand_core;
#[cfg(feature = "serde")] #[cfg(feature = "serde")]
pub extern crate serde; pub extern crate serde;
@ -542,12 +542,7 @@ impl Mnemonic {
const PBKDF2_BYTES: usize = 64; const PBKDF2_BYTES: usize = 64;
let mut seed = [0u8; PBKDF2_BYTES]; let mut seed = [0u8; PBKDF2_BYTES];
pbkdf2::pbkdf2( pbkdf2::pbkdf2(self.words(), normalized_passphrase.as_bytes(), PBKDF2_ROUNDS, &mut seed);
self.words(),
normalized_passphrase.as_bytes(),
PBKDF2_ROUNDS,
&mut seed,
);
seed seed
} }