Remove the useless display

This commit is contained in:
Rodolphe Bréard 2024-10-27 19:36:48 +01:00
parent 686ecf8801
commit 7e797ab644

View file

@ -19,6 +19,5 @@ impl Task {
pub fn execute(&self) { pub fn execute(&self) {
let mut key1 = [0u8; 20]; let mut key1 = [0u8; 20];
pbkdf2_hmac::<Sha256>(self.data, DUMMY_SALT, self.cost, &mut key1); pbkdf2_hmac::<Sha256>(self.data, DUMMY_SALT, self.cost, &mut key1);
println!("Task done: {key1:?}");
} }
} }