diff --git a/crates/store_sqlite/src/principal_store.rs b/crates/store_sqlite/src/principal_store.rs index abdb893..e921d71 100644 --- a/crates/store_sqlite/src/principal_store.rs +++ b/crates/store_sqlite/src/principal_store.rs @@ -198,7 +198,7 @@ impl AuthenticationProvider for SqlitePrincipalStore { None, None, Params { - rounds: 1000, + rounds: 100, ..Default::default() }, &salt, diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 05a720e..a1766e2 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -60,7 +60,7 @@ pub struct PwhashArgs { long, short = 'r', help = "ONLY for pbkdf2: Number of rounds to calculate", - default_value_t = 1000 + default_value_t = 100 )] rounds: u32, }