Add warning when using legacy key file formats.

This commit is contained in:
Janek Bevendorff 2017-12-27 14:20:28 +01:00 committed by Jonathan White
parent 21a6c0fd89
commit 871332ecf0
5 changed files with 61 additions and 2 deletions

View file

@ -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);
}