We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbe3321 commit 5968b35Copy full SHA for 5968b35
cryptography/test/algorithms/pbkdf2_test.dart
@@ -165,10 +165,10 @@ void _main() {
165
);
166
});
167
168
- test('deriveKey(...): Hmac(sha256), 10k iterations in 100ms', () async {
+ test('deriveKey(...): Hmac(sha256), 10k iterations in 300ms', () async {
169
final macAlgorithm = Hmac.sha256();
170
final n = 10 * 1000;
171
- const maxDuration = Duration(milliseconds: 100);
+ const maxDuration = Duration(milliseconds: 300);
172
173
final pbkdf2 = Pbkdf2(
174
macAlgorithm: macAlgorithm,
0 commit comments