Browse Source

fix detecting of invalid password vs. invalid byte stream.

remove-cryptography-dependency
Herbert Poul 5 years ago
parent
commit
12dac83fd3
  1. 14
      lib/src/kdbx_format.dart

14
lib/src/kdbx_format.dart

@ -305,19 +305,27 @@ class KdbxFormat {
ParametersWithIV(KeyParameter(masterKey), encryptionIv.asUint8List()));
final paddedDecrypted =
AesHelper.processBlocks(decryptCipher, encryptedPayload);
final decrypted = AesHelper.unpad(paddedDecrypted);
final streamStart = header.fields[HeaderFields.StreamStartBytes].bytes;
if (paddedDecrypted.lengthInBytes < streamStart.lengthInBytes) {
_logger.warning('decrypted content was shorter than expected stream start block.');
throw KdbxInvalidKeyException();
}
_logger.finest(
'streamStart: ${ByteUtils.toHexList(streamStart.asUint8List())}');
_logger.finest(
'actual : ${ByteUtils.toHexList(decrypted.sublist(0, streamStart.lengthInBytes))}');
'actual : ${ByteUtils.toHexList(paddedDecrypted.sublist(0, streamStart.lengthInBytes))}');
if (!ByteUtils.eq(streamStart.asUint8List(),
decrypted.sublist(0, streamStart.lengthInBytes))) {
paddedDecrypted.sublist(0, streamStart.lengthInBytes))) {
throw KdbxInvalidKeyException();
}
final decrypted = AesHelper.unpad(paddedDecrypted);
// ignore: unnecessary_cast
final content = decrypted.sublist(streamStart.lengthInBytes) as Uint8List;
return content;

Loading…
Cancel
Save