mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 19:11:39 -06:00
cipher: Add support for encryption using the raw key format
See issue #264.
This commit is contained in:
@@ -2130,7 +2130,7 @@ void MainWindow::editEncryption()
|
||||
// Attach a new database using the new settings
|
||||
qApp->processEvents();
|
||||
if(ok)
|
||||
ok = db.executeSQL(QString("ATTACH DATABASE '%1' AS sqlitebrowser_edit_encryption KEY '%2';").arg(db.currentFile() + ".enctemp").arg(dialog.password()),
|
||||
ok = db.executeSQL(QString("ATTACH DATABASE '%1' AS sqlitebrowser_edit_encryption KEY %2;").arg(db.currentFile() + ".enctemp").arg(dialog.password()),
|
||||
false, false);
|
||||
qApp->processEvents();
|
||||
if(ok)
|
||||
|
||||
Reference in New Issue
Block a user