diff --git a/crates/store_sqlite/src/principal_store.rs b/crates/store_sqlite/src/principal_store.rs index 93e1bbb..11c2a3c 100644 --- a/crates/store_sqlite/src/principal_store.rs +++ b/crates/store_sqlite/src/principal_store.rs @@ -206,7 +206,10 @@ impl AuthenticationProvider for SqlitePrincipalStore { None, None, Params { - rounds: 10, + // The app token has a high entropy so we are quite safe from quessing attacks + // Also if an attacker got access to the hashes they'd have already gotten + // access to the whole database. + rounds: 2, ..Default::default() }, &salt,