Skip to content

Commit

Permalink
chore: Removed various remaining print calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
Skyost committed Jul 8, 2024
1 parent 42c6801 commit cb3254f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/model/crypto.dart
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,6 @@ class CryptoStore {
/// Checks if the given password is valid.
Future<bool> checkPasswordValidity(String password) async {
Uint8List derivedKey = await _deriveKey(password, salt);
print('Original : ${await key.exportRawKey()}');
print('Derived key : ${derivedKey}');
return memEquals(derivedKey, await key.exportRawKey());
}

Expand Down

0 comments on commit cb3254f

Please sign in to comment.