mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 21:17:43 +03:00
Add warning when using legacy key file formats.
This commit is contained in:
parent
21a6c0fd89
commit
871332ecf0
5 changed files with 61 additions and 2 deletions
|
@ -82,6 +82,13 @@ int Extract::execute(QStringList arguments)
|
|||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
if (fileKey.type() != FileKey::Hashed) {
|
||||
errorTextStream << QObject::tr("WARNING: You are using a legacy key file format which may become\n"
|
||||
"unsupported in the future.\n\n"
|
||||
"Please consider generating a new key file.");
|
||||
errorTextStream << endl;
|
||||
}
|
||||
|
||||
compositeKey.addKey(fileKey);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue