Able to view encrypted keys in the key management window

This commit is contained in:
amazing-username
2017-08-11 20:44:33 -05:00
parent b83287b768
commit c1d17799cd
10 changed files with 113 additions and 14 deletions
+4
View File
@@ -73,11 +73,14 @@ void MainWindow::connections()
void MainWindow::changeCryptionType()
{
/**
(cryptionChoice) ? cryptionSwitch->setText("decrypt chosen") : cryptionSwitch->setText("encrypt chosen");
cryptionChoice = (cryptionChoice) ? false : true;
*/
}
void MainWindow::determineCryption()
{
/**
if (cryptionChoice)
{
Encryption ec{grabCryptionText()};
@@ -98,6 +101,7 @@ void MainWindow::determineCryption()
cryptionSwitch.get()->setText("encrypt chosen");
cryptionChoice = true;
}
*/
}
void MainWindow::keyManagementWindow() { kh.get()->show(); }
void MainWindow::passwordManageWindow() { ph.get()->show(); }