Show "this might take some time" when generating the key

This commit is contained in:
Sebastian Messmer 2016-01-28 20:40:56 +00:00
parent c4d975260e
commit 9f94a88bef

View File

@ -34,7 +34,7 @@ namespace cryfs {
}
string CryConfigCreator::_generateEncKey(const std::string &cipher) {
_console->print("\nGenerating secure encryption key...");
_console->print("\nGenerating secure encryption key. This might take some time..");
auto key = CryCiphers::find(cipher).createKey(_encryptionKeyGenerator);
_console->print("done\n");
return key;